|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools>=70.0.0", # CVE-2024-38335 recommends this |
| 4 | + "networkx>=3.0.0", |
| 5 | + "pydot", |
| 6 | + "mpmath>=1.2.0", |
| 7 | + "numpy<1.27", |
| 8 | + "matplotlib", |
| 9 | + "scipy>=1.10.0", |
| 10 | + "sympy>=1.11,<1.13", |
| 11 | +] |
| 12 | +build-backend = "setuptools.build_meta" |
| 13 | + |
| 14 | +[project] |
| 15 | +name = "Mathics3-graph" |
| 16 | +description = "Mathics3 Graph Module using NetworkX" |
| 17 | +dependencies = [ |
| 18 | + "Mathics3>=8.0.1", |
| 19 | + "Mathics3-Module-Base", |
| 20 | + "networkx>=3.0.0", |
| 21 | + "pydot", |
| 22 | + "matplotlib", |
| 23 | + "scipy>=1.10.0", |
| 24 | +] |
| 25 | +requires-python = ">=3.9" # Sympy 1.11 is supported only down to 3.8 |
| 26 | +readme = "README.rst" |
| 27 | +license = {text = "GPL"} |
| 28 | +keywords = ["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"] |
| 29 | +maintainers = [ |
| 30 | + { name = "Mathics Group", email = "[email protected]"}, |
| 31 | +] |
| 32 | +classifiers = [ |
| 33 | + "Intended Audience :: Developers", |
| 34 | + "Intended Audience :: Science/Research", |
| 35 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 36 | + "Programming Language :: Python", |
| 37 | + "Programming Language :: Python :: 3.9", |
| 38 | + "Programming Language :: Python :: 3.10", |
| 39 | + "Programming Language :: Python :: 3.11", |
| 40 | + "Programming Language :: Python :: 3.12", |
| 41 | + "Programming Language :: Python :: 3.13", |
| 42 | + "Programming Language :: Python :: 3.14", |
| 43 | + "Programming Language :: Python :: Implementation :: CPython", |
| 44 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 45 | + "Topic :: Scientific/Engineering", |
| 46 | + "Topic :: Scientific/Engineering :: Mathematics", |
| 47 | + "Topic :: Software Development :: Interpreters", |
| 48 | +] |
| 49 | +dynamic = ["version"] |
| 50 | + |
| 51 | +[project.urls] |
| 52 | +Homepage = "https://github.com/Mathics3/pymathics-graph" |
| 53 | +Downloads = "https://github.com/Mathics3/pymathics-graph/releases" |
| 54 | + |
| 55 | +[project.optional-dependencies] |
| 56 | +dev = [ |
| 57 | + "pytest", |
| 58 | +] |
| 59 | + |
| 60 | +[tool.setuptools] |
| 61 | +packages = [ |
| 62 | + "pymathics.graph", |
| 63 | +] |
| 64 | + |
| 65 | +[tool.setuptools.dynamic] |
| 66 | +version = {attr = "pymathics.graph.__version__"} |
0 commit comments