-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.88 KB
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
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[project]
name = "Mathics3-omnibus"
description = "A Collection Mathics3 components to provide the full Mathics3 experience"
dependencies = [
"Mathics3[full] > 9.0",
"mathicsscript[full] >9.0",
"Mathics3-Module-nltk > 9.0",
"Mathics3-Module-PyICU > 9.0",
"Mathics3-Module-networkx > 9.0",
]
requires-python = ">=3.10"
readme = "README.rst"
license = "GPL-3.0-or-later"
keywords = ["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"]
maintainers = [
{name = "Mathics3 Group"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Interpreters",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://mathics.org/"
[tool.poetry]
include = ["script/dmathics3"]
[tool.poetry.scripts]
dmathics3 = { reference = "script/dmathics3", type = "file" }
dmathics3-parser = { reference = "script/dmathics3-parse", type = "file" }
dmathics3-tokenize = { reference = "script/dmathics3-tokenize", type = "file" }
dmathics3copy = { reference = "script/dmathics3copy", type = "file" }
dmathics3doc = { reference = "script/dmathics3doc", type = "file" }
dMathics3Server = { reference = "script/dmathics3server", type = "file" }
[tool.setuptools.packages.find]
include = ["mathics3_omnibus*"]
[tool.setuptools.dynamic]
version = {attr = "mathics3_omnibus.version.__version__"}