-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
56 lines (51 loc) · 1.51 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
[build-system]
requires = ["setuptools >= 65.5.1"]
build-backend = "setuptools.build_meta"
[project]
name = "polytope"
description = "Polytope Toolbox"
authors = [{name = "Caltech Control and Dynamical Systems", email = "polytope@tulip-control.org"}]
readme = "README.rst"
license = {text = "BSD-3-Clause"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"networkx >= 3.0",
"numpy >= 1.24.1",
"scipy >= 1.10.0",
]
[project.urls]
Homepage = "https://tulip-control.org"
"Source Code" = "https://github.com/tulip-control/polytope"
"Bug Tracker" = "https://github.com/tulip-control/polytope/issues"
Documentation = "https://tulip-control.github.io/polytope/"
[project.optional-dependencies]
extra = [
"cvxopt >= 1.3.2",
]
test = [
"matplotlib >= 3.6.3",
"pytest >= 7.2.1",
]
[tool.setuptools]
packages = [
"polytope",
]
[tool.setuptools.package-data]
"polytope" = ["commit_hash.txt"]