-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (61 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
66 lines (61 loc) · 1.74 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
59
60
61
62
63
64
65
66
[build-system]
requires = [
"setuptools",
"mpmath",
"numpy",
"requests",
"sympy",
"pygments",
"mathics-pygments",
"trepan3k >= 1.4.0",
"Mathics3-Module-Base",
"Mathics_Scanner >= 2.0.0",
"Mathics3 > 9.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "Mathics3-Module-trepan"
description = 'Mathics3 Debugger Module based on trepan debuggers'
dependencies = [
"Mathics_Scanner > 2.0",
"Mathics3 > 9.0.0",
"Mathics3-Module-Base",
"mathics-pygments",
"trepan3k>1.5.1",
]
requires-python = ">=3.10"
readme = "README.rst"
license = "GPL-3.0-or-later"
keywords = ["Mathematica", "Wolfram", "Interpreter", "Shell", "Math", "CAS"]
maintainers = [
{name = "Mathics Group", email = "mathics-devel@googlegroups.com"},
]
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://github.com/Mathics3/Mathics3-Module-trepan"
Downloads = "https://github.com/Mathics3/Mathics3-Module-trepan/releases"
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
]
[tool.setuptools]
packages = [
"pymathics.trepan",
]
[tool.setuptools.dynamic]
version = {attr = "pymathics.trepan.__version__"}