-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.22 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "grammar_graph"
authors = [
{ name = "Dominic Steinhoefel", email = "[email protected]" },
]
description = "Graphs from Context-Free Grammars."
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
dynamic = ["version", "readme"]
dependencies = [
"fibheap>=0.2.1",
"graphviz>=0.20",
"wheel>=0.37.1",
]
[project.urls]
"Homepage" = "https://github.com/rindPHI/GrammarGraph/"
"Bug Tracker" = "https://github.com/rindPHI/GrammarGraph/issues"
[project.optional-dependencies]
test = [
"fuzzingbook>=1.1",
"pytest-pycharm>=0.7.0",
"pytest-xdist==2.5.0",
"pytest>=6.2.5",
]
dev = [
"black>=22.8.0",
"build>=0.8.0",
]
[tool.setuptools.dynamic]
version = { attr = "grammar_graph.__version__" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.black]
line-length = 88
target-version = ['py310']