-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
79 lines (73 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = [
"setuptools>=70.0.0", # CVE-2024-38335 recommends this
# needed for building tables for the sdist:
"PyYAML",
"click",
]
build-backend = "setuptools.build_meta"
[project]
name = "mathicsscript"
description = "Command-line interface to Mathics3"
dependencies = [
"Mathics_Scanner>=1.3.0",
"Mathics3 >= 7.0.0dev0",
"click",
"colorama",
"columnize",
"networkx",
"prompt_toolkit>=3.0.18",
"Pygments>=2.9.0", # Want something late enough that has the "inkpot" style
"mathics_pygments>=1.0.2",
"term-background >= 1.0.1",
]
requires-python = ">=3.8"
readme = "README.rst"
license = {text = "GPL-3.0-only"}
keywords = ["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"]
maintainers = [
{name = "Mathics3 Group"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Interpreters",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest",
]
full = [
"PyYAML", # Used for admin-tools/make-tables.sh to build JSON tables
"PyQT6", # For interactive display of graphs via matplotlib
"cairosvg", # For rendering Plots and Graphs as SVGs via matplotlib
"cson", # for xasy
"matplotlib" # For rendering SVG plots
]
[project.scripts]
mathicsscript = "mathicsscript.__main__:main"
"fake_psviewer.py" = "mathicsscript.fake_psviewer:main"
[project.urls]
Homepage = "https://mathics.org/"
[tool.setuptools.package-data]
"mathics_scanner" = [
"mathicsscript/data/inputrc-no-unicode",
"mathicsscript/data/inputrc-unicode",
"mathicsscript/user-settings.m",
"mathicsscript/autoload/settings.m",
"mathicsscript/config.asy",
]
[tool.setuptools.dynamic]
version = {attr = "mathicsscript.version.__version__"}