-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.25 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "paradoc"
version = "0.3.3"
authors = [
{ name = "Kristoffer H. Andersen", email = "[email protected]" },
]
description = "A Python library for Parametric Documentation"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
[project.scripts]
paradoc = "paradoc.cli_app:app"
[project.urls]
"Homepage" = "https://github.com/Krande/paradoc"
"Bug Tracker" = "https://github.com/Krande/paradoc/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
ignore = ["E741"]
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 120
ignore = ["E24", "E121", "E123", "E126", "E203", "E226", "E704", "E741", "W503", "W504"]