|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools", |
| 4 | + "Mathics3-Module-Base >= 9.0.0", |
| 5 | + "Mathics3>=9.0.0", |
| 6 | + "PyICU>=2.9", |
| 7 | +] |
| 8 | +build-backend = "setuptools.build_meta" |
| 9 | + |
| 10 | +[project] |
| 11 | +name = "Mathics3-Module-PyICU" |
| 12 | +description = 'Mathics3 Hello, World! module' |
| 13 | +dependencies = [ |
| 14 | + "Mathics3-Module-Base >= 9.0.0", |
| 15 | + "Mathics3 >= 9.0.0", |
| 16 | + "PyICU>=2.9", |
| 17 | +] |
| 18 | +requires-python = ">=3.10" |
| 19 | +readme = "README.rst" |
| 20 | +license = "GPL-3.0-or-later" |
| 21 | +keywords = ["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"] |
| 22 | +maintainers = [ |
| 23 | + {name = "Mathics Group", email = "mathics-devel@googlegroups.com"}, |
| 24 | +] |
| 25 | +classifiers = [ |
| 26 | + "Intended Audience :: Developers", |
| 27 | + "Intended Audience :: Science/Research", |
| 28 | + "Programming Language :: Python", |
| 29 | + "Programming Language :: Python :: 3.10", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | + "Programming Language :: Python :: 3.13", |
| 33 | + "Programming Language :: Python :: Implementation :: CPython", |
| 34 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 35 | + "Topic :: Scientific/Engineering", |
| 36 | + "Topic :: Scientific/Engineering :: Mathematics", |
| 37 | + "Topic :: Software Development :: Interpreters", |
| 38 | +] |
| 39 | +dynamic = ["version"] |
| 40 | + |
| 41 | +[project.urls] |
| 42 | +Homepage = "https://github.com/Mathics3/Mathics3-Module-PyICU" |
| 43 | +Downloads = "https://github.com/Mathics3/Mathics-Module-PyICU/releases" |
| 44 | + |
| 45 | +[project.optional-dependencies] |
| 46 | +dev = [ |
| 47 | + "pytest", |
| 48 | +] |
| 49 | + |
| 50 | +[tool.setuptools] |
| 51 | +packages = [ |
| 52 | + "pymathics.language", |
| 53 | +] |
| 54 | + |
| 55 | +[tool.setuptools.dynamic] |
| 56 | +version = {attr = "pymathics.language.__version__"} |
0 commit comments