|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools", |
| 4 | + "setuptools-scm", |
| 5 | + "wheel" |
| 6 | +] |
| 7 | +build-backend = "setuptools.build_meta" |
| 8 | + |
| 9 | +[project] |
| 10 | +name = "control" |
| 11 | +description = "Python Control Systems Library" |
| 12 | +authors = [{name = "Python Control Developers", email = "python-control-developers@lists.sourceforge.net"}] |
| 13 | +license = {text = "BSD-3-Clause"} |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Intended Audience :: Science/Research", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: BSD License", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.7", |
| 21 | + "Programming Language :: Python :: 3.8", |
| 22 | + "Programming Language :: Python :: 3.9", |
| 23 | + "Programming Language :: Python :: 3.10", |
| 24 | + "Topic :: Software Development", |
| 25 | + "Topic :: Scientific/Engineering", |
| 26 | + "Operating System :: Microsoft :: Windows", |
| 27 | + "Operating System :: POSIX", |
| 28 | + "Operating System :: Unix", |
| 29 | + "Operating System :: MacOS", |
| 30 | +] |
| 31 | +requires-python = ">=3.7" |
| 32 | +dependencies = [ |
| 33 | + "numpy", |
| 34 | + "scipy>=1.3", |
| 35 | + "matplotlib", |
| 36 | +] |
| 37 | +dynamic = ["version"] |
| 38 | + |
| 39 | +[tool.setuptools] |
| 40 | +packages = ["control"] |
| 41 | + |
| 42 | +[project.optional-dependencies] |
| 43 | +test = ["pytest", "pytest-timeout"] |
| 44 | +slycot = [ "slycot>=0.4.0" ] |
| 45 | +cvxopt = [ "cvxopt>=1.2.0" ] |
| 46 | + |
| 47 | +[project.urls] |
| 48 | +homepage = "https//python-control.org" |
| 49 | +source = "https://github.com/python-control/python-control" |
| 50 | + |
| 51 | +[tool.setuptools_scm] |
| 52 | +write_to = "control/_version.py" |
| 53 | + |
| 54 | +[tool.pytest.ini_options] |
| 55 | +addopts = "-ra" |
| 56 | +filterwarnings = [ |
| 57 | + "error:.*matrix subclass:PendingDeprecationWarning", |
| 58 | +] |
0 commit comments