-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (70 loc) · 2.12 KB
/
pyproject.toml
File metadata and controls
76 lines (70 loc) · 2.12 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
68
69
70
71
72
73
74
75
76
[build-system]
requires = [
"setuptools",
"Mathics3-Module-Base",
"Mathics3>9.0.0",
"PatternLite",
"langid", # replace with a supported newer package, e.g. via spacy
"matplotlib",
"mpmath>=1.2.0",
"numpy",
"pycountry>=3.2.0",
"pyenchant>=3.2.0",
"scipy>=1.10.0",
"spacy>=3.4",
"wasabi<1.1.0,>=0.8.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "Mathics3-Module-nltk"
description = "Mathics3 Natural Language Toolkit module"
dependencies = [
"Mathics3>9.0.0",
"Mathics3-Module-Base>=9.0.0",
"click>=8.0",
"joblib>=1.0.1",
"langid", # replace with a supported newer package, e.g. via spacy
"llvmlite>=0.36",
"nltk>=3.8.0",
"mpmath>=1.2.0",
"PatternLite",
"pyenchant>=3.2.0",
"pycountry>=3.2.0",
"spacy>=3.4",
"wasabi<1.1.0,>=0.8.2",
]
requires-python = ">=3.11"
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.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"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-nltk"
Downloads = "https://github.com/Mathics3/Mathics3-Module-nltk/releases"
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.setuptools]
packages = [
"pymathics.natlang",
]
[tool.setuptools.dynamic]
version = {attr = "pymathics.natlang.version.__version__"}