-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
REL: move info from setup.py to pyproject.toml
- Loading branch information
1 parent
1c92b8e
commit 8c39e6a
Showing
2 changed files
with
57 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters