-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (52 loc) · 1.51 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
60
61
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfloyd"
description = "A parser generator and interpreter framework for Python."
authors = [
{name = "Dirk Pranke", email = "[email protected]"},
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">= 3.8.0"
classifiers= [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
dynamic = [ "version" ]
[project.optional-dependencies]
dev = [
'coverage==7.5.3',
'mypy==1.13.0',
'pip==24.3.1',
'pylint==3.2.3',
'ruff==0.7.3',
'uv==0.5.1',
]
[project.urls]
Repository = "https://github.com/dpranke/pyfloyd"
Issues = "https://github.com/dpranke/pyfloyd/issues"
Changelog = "https://github.com/dpranke/pyfloyd/blob/master/README.md"
[project.scripts]
pyfloyd = "pyfloyd.tool:main"
[tool.black]
line-length = 79
skip-string-normalization = true
[tool.ruff]
include = [ "run", "src/pyfloyd/*.py", "tests/*.py" ]
line-length = 79
[tool.ruff.format]
quote-style = "single"
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.setuptools.dynamic]
version = {attr = "pyfloyd.__version__"}