-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (58 loc) · 1.96 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
[build-system]
requires = [
"setuptools>=80", # CVE-2024-38335 and later CVE's recommend this
"wheel",
"packaging",
]
build-backend = "setuptools.build_meta"
[project]
description = "Jupyter, JupyterLite, marimo, Observable Notebook integration for Mathics3"
dependencies = [
"Mathics3 >= 10.0.1",
"setuptools",
# The following is needed because latest versions of "chardet" (6.0
# and above) are not supported with some versions of "requests". I
# think the main important version restriction below is chardet<6.0.0
# chardet 6+ and above is not compatible with "requests" (et. al?)
"requests>=2.32.3",
"urllib3>=1.21.1,< 3",
"chardet>=3.0.2,< 6.0.0",
"charset-normalizer>=2.0.0,< 4.0.0",
]
dynamic = ["version"]
license = "GPL-3.0-or-later"
name = "mathics3_notebook_frontends"
requires-python = ">=3.11"
maintainers = [
{name = "Mathics3 Group", email = "mathics-devel@googlegroups.com"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Interpreters",
]
readme = "README.md"
[project.urls]
Homepage = "https://mathics.org/"
Downloads = "https://github.com/Mathics3/Mathics3-notebook-frontends/releases"
[project.optional-dependencies]
dev = [
"check-jsonschema",
"pytest",
"pre-commit",
]
[[tool.mypy.overrides]]
ignore_missing_imports = true
[tool.setuptools.packages.find]
include = ["mathics3_kernel.frontend"]
[tool.setuptools.dynamic]
version = {attr = "mathics3_kernel.frontend.version.__version__"}