-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
67 lines (61 loc) · 1.33 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "mknapsack"
description = "Solving knapsack and bin packing problems with Python"
authors = [
{ name = "Jesse Myrberg", email = "[email protected]" }
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["knapsack", "bin", "packing", "optimization"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License"
]
requires-python = ">=3.8, <3.12"
dependencies = [
"numpy>=1.13"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"build",
"flake8",
"numpy",
"pytest",
"setuptools",
"setuptools-scm",
"twine",
"wheel"
]
docs = [
"myst-parser",
"piccolo-theme",
"sphinx"
]
test = [
"pytest"
]
[project.urls]
"Homepage" = "https://github.com/jmyrberg/mknapsack"
"Documentation" = "https://mknapsack.readthedocs.io"
[build-system]
requires = [
"setuptools>=51.0.0",
"setuptools-scm",
"numpy"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = [
"mknapsack*"
]
[tool.setuptools_scm]
write_to = "mknapsack/_version.py"
local_scheme = "no-local-version"
[tool.cibuildwheel]
skip = 'pp*'
build-verbosity = "3"
test-extras = ["test"]
test-command = "pytest -vv --import-mode=importlib {package}"