-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.21 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "parsival"
version = "0.0.0a3"
description = "A class-based language parser."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["parser", "grammar", "language"]
license = {file = "LICENSE"}
authors = [{name = "AbyxDev"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Topic :: Text Processing :: General",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Typing :: Typed"
]
dependencies = []
[project.urls]
Source = "https://github.com/Kenny2github/parsival"
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"sphinx",
"furo",
]
[project.scripts]
parsival-gramgen = "parsival.scripts.grammar_generator.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["parsival", "parsival.scripts.grammar_generator"]
[tool.pytest.ini_options]
addopts = [
]