forked from aixp/pycoco
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.93 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
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=61.2.0", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "CocoPy"
authors = [{name = "Ron Longo", email = "[email protected]"}]
description = "Python implementation of the famous CoCo/R LL(k) compiler generator."
readme = "ReadMe.md"
keywords = ["parser", "generator"]
license = {text = "GPL-3.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
"Topic :: Software Development :: Pre-processors",
"Topic :: System :: Shells",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic",
]
requires-python = ">=3.4"
dependencies = ["astor"]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/UniGrammar/CoCoPy"
"Original Homepage" = "https://ssw.uni-linz.ac.at/Research/Projects/Coco/"
"Original User Manual" = "https://ssw.uni-linz.ac.at/Research/Projects/Coco/Doc/UserManual.pdf"
"Other Impls" = "https://github.com/SSW-CocoR"
[tool.setuptools]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["Coco", "Coco.*", "CoCoRuntime", "CoCoRuntime.*"]
[tool.setuptools.package-data]
documentation = ["*"]
examples = ["*"]
frames = ["*"]
pimaker = ["*"]
sources = ["*"]
testsuite = ["*"]
[tool.setuptools_scm]