-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 808 Bytes
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
[build-system]
requires = ["setuptools", "wheel", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "puan"
requires-python = ">=3.8"
version = "0.5.0"
authors = [
{ name="Our Studio Void AB", email="moa@ourstudio.se" },
]
description = "Tools for combinatorial optimization"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.23.5",
"more-itertools>=8.12.0",
"maz>=0.0.6",
"puan-rspy>=0.2.9"
]
keywords = ["combinatorial optimization", "milp", "mllp", "ilp", "linear-programming", "optimization"]
[tool.setuptools]
packages = [
'puan',
'puan.logic',
'puan.logic.plog',
'puan.misc',
'puan.ndarray',
'puan.modules',
'puan.modules.configurator',
]