Skip to content

Commit df968f6

Browse files
committed
Adds pyproject.toml
1 parent c0f4798 commit df968f6

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

pyproject.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[tool.setuptools.packages.find]
2+
where = ["src"]
3+
include = ["syntactes"]
4+
exclude = ["syntactes.tests*"]
5+
namespaces = false
6+
7+
[build-system]
8+
requires = ["setuptools"]
9+
build-backend = "setuptools.build_meta"
10+
11+
[project]
12+
name = "syntactes"
13+
version = "0.1.0"
14+
authors = [
15+
{ name="Maximos Nikiforakis", email="[email protected]" }
16+
]
17+
description = "Parser generator"
18+
keywords = ["parser", "generator"]
19+
readme = "README.md"
20+
license = {text = "MIT"}
21+
requires-python = ">=3.10"
22+
dependencies = []
23+
classifiers = [
24+
"Programming Language :: Python",
25+
"Programming Language :: Python :: 3",
26+
"Programming Language :: Python :: 3.10",
27+
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
30+
"Natural Language :: English",
31+
"License :: OSI Approved :: MIT License",
32+
"Topic :: Software Development :: Compilers",
33+
]
34+
35+
[project.urls]
36+
Homepage = "https://github.com/Maxcode123/syntactes"
37+
Issues = "https://github.com/Maxcode123/syntactes/issues"

0 commit comments

Comments
 (0)