-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.28 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "netto"
version = "0.2.0"
authors = [
{ name="Martin Klein", email="hi@martinklein.co" },
]
description = "German income tax (Einkommensteuer) and social security (Sozialabgaben) calculator"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"scipy",
"pydantic>=2.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/0-k/netto"
"Documentation" = "https://netto.readthedocs.io/en/latest/"
"Bug Tracker" = "https://github.com/0-k/netto/issues"
[tool.setuptools]
packages = ["netto"]
[tool.setuptools.package-data]
netto = ["../data/**/*.json", "../data/**/*.md"]
[tool.ruff]
line-length = 88 # Black-compatible default, widely adopted standard
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"