-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (56 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (56 loc) · 1.55 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
67
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Mathics3-Fronend-django"
description = "A Django-based frontend for Mathics3"
dependencies = [
"Django >= 3.1",
"Mathics3 >= 10.0.1",
"Mathics3_Scanner >= 10.0",
"pygments", # For colorized Python tracebacks
"requests",
"scikit-image; sys_platform == 'darwin'",
]
requires-python = ">=3.11"
readme = "README.rst"
license = "GPL-3.0-or-later"
maintainers = [
{name = "Mathics3 Group"},
]
classifiers = [
"Framework :: Django",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Mathematics",
]
dynamic = ["version"]
[project.optional-dependencies]
# Packages used to test project
dev = [
"pytest",
"pytest-django"
]
# Full set of Mathics3 modules
full = [
"Mathics3-Module-PyICU",
"Mathics3-Module-nltk",
"Mathics3-Module-networkx",
]
# Packages used in a Production server environment
production = [
"daphne", # ASGI webserver for production use
"whitenoise", # For serving static files under daphne
]
[project.scripts]
Mathics3Server = "mathics_django.manage:main"
[project.urls]
Homepage = "https://mathics.org/"
[tool.setuptools]
packages = ["mathics_django"]
[tool.setuptools.dynamic]
version = {attr = "mathics_django.version.__version__"}