-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
75 lines (65 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=60", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "yace"
description = "yace aka Yet Another Code Emitter / Your Artisanal Code Emitter"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ name = "Simon A. F. Lund", email = "[email protected]" }
]
maintainers = [
{ name = "Simon A. F. Lund", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
"Topic :: Software Development",
"Topic :: Text Processing",
"Topic :: Utilities"
]
dependencies = [
"jinja2",
"pyyaml",
"pydantic",
"libclang~=14.0.1",
]
dynamic = ["version"]
[project.readme]
file = "README.rst"
content-type = "text/x-rst; charset=UTF-8"
[tool.setuptools.dynamic]
version = { attr = "yace.__version__" }
[project.optional-dependencies]
dev = [
"coverage",
"kmdo",
"pudb",
"sphinx",
"wheel",
]
all = ["yace[dev]"]
[project.scripts]
yace = "yace.cli.yace:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"yace" = ["*.clang-format", "*.template"]
[tool.ruff]
lint.select = ["E", "F", "I"]
lint.per-file-ignores = { "src/yace/ir/datatypes.py" = ["E742"] }
[tool.pylsp]
[tool.pylsp.plugins]
rope = { enabled = true }