-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.99 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
# See the specification of the pyproject.toml file at:
# https://packaging.python.org/en/latest/specifications/pyproject-toml/
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["api", "application", "domain", "resultwizard"]
namespaces = true
[project]
name = "resultwizard"
version = "1.0.0-alpha.2"
authors = [
{ name = "Paul Obernolte (paul019)" },
{ name = "Dominic Plein (Splines)" },
]
description = "Intelligent interface between Python-computed values and your LaTeX work"
keywords = [
"latex",
"variable",
"science",
"result",
"value",
"rounding",
"significant figures",
"jupyter",
]
readme = "README.md"
requires-python = ">=3.8"
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#classifiers
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Build Tools",
"Topic :: Text Processing :: Markup :: LaTeX",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"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",
]
[project.urls]
Homepage = "https://resultwizard.github.io/ResultWizard/"
Repository = "https://github.com/resultwizard/ResultWizard"
Issues = "https://github.com/resultwizard/ResultWizard/issues"
Changelog = "https://github.com/resultwizard/ResultWizard/blob/main/CHANGELOG.md"
# TODO: Add these checks back
[tool.pylint."messages control"]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"fixme",
"too-few-public-methods",
]
[tool.pylint.format]
max-line-length = 100
max-module-lines = 500
[tool.black]
line-length = 100