-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
70 lines (60 loc) · 1.95 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
[build-system]
requires = ["setuptools>=75", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dynamicsyntax"
dynamic = ["version"]
description = "DyLan, the Dynamic Syntax parser in Python"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "BSD-3-Clause (see DyLan upstream LICENSE.txt)" }
authors = [{ name = "Arash Ashrafzadeh" }]
keywords = ["computational-linguistics", "computational-semantics", "semantic-parsing", "natural-language-processing", "parser", "ttr", "dialogue"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"tqdm>=4.67",
]
[project.urls]
Homepage = "https://github.com/incrementaliser/DynamicSyntax"
Repository = "https://github.com/incrementaliser/DynamicSyntax"
[project.optional-dependencies]
gui = ["flet>=0.24.0"]
nlp = ["nltk>=3.9", "spacy>=3.8"]
viz = ["plotly>=5", "pandas>=2"]
video = ["manim>=0.20"]
rich = ["rich>=13"]
[dependency-groups]
dev = [
"pytest>=8",
"flet>=0.24.0",
"ruff>=0.9",
"rich>=13",
]
[project.scripts]
dylan-gui = "dylan.gui.app:main"
dynamicsyntax-gui = "dylan.gui.app:main"
dylan-serve-web = "dylan.web_dev:main"
dynamicsyntax-serve-web = "dylan.web_dev:main"
[tool.setuptools_scm]
[tool.setuptools.package-data]
dynamicsyntax = ["grammars/**/*"]
"dynamicsyntax.resources" = ["**/*.txt", "**/__init__.py"]
"dylan.formula.latex" = ["*.sty", "*.txt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 100
target-version = "py311"
# Skip uploading dist files that already exist on PyPI (avoids 400 file name reuse).
[tool.uv]
check-url = "https://pypi.org/simple"