-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.19 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name="tspwplib"
authors = [
{name = "Patrick O'Hara", email = "[email protected]"},
]
urls = {Code = "https://github.com/PatrickOHara/tspwplib", Documentation = "https://patrickohara.github.io/tspwplib/", Download = "https://pypi.org/project/tspwplib/", Homepage = "https://github.com/PatrickOHara/tspwplib", Issues = "https://github.com/PatrickOHara/tspwplib/issues"}
description="Library of instances for TSP with Profits"
readme = "README.md"
requires-python = ">=3.12"
keywords = ["TSP"]
license = {text = "MIT"}
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
dependencies = [
"networkx>=3.0.0",
"numpy>=1.26.0",
"pandas>=2.0.0",
"pyarrow>=15.0.0",
"pydantic>=2.5.3",
"pyyaml>=6.0",
"tsplib95@git+https://github.com/ben-hudson/tsplib95.git",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["tspwplib"]
[tool.black]
exclude = "_version.py"
[tool.setuptools_scm]