generated from Hochfrequenz/python_template_repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (83 loc) · 2.32 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "chronomeleon"
description = "A python package to flexibly adapt start and end date(times) to your system background"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Hochfrequenz Unternehmensberatung GmbH", email = "info+github@hochfrequenz.de" }]
keywords = ["date", "time", "conversion", "migration", "inclusive", "exclusive", "dateonly"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
# no python 3.8 and 3.9 because of missing kw_only arg to dataclass
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pytz"
] # add all the dependencies here
dynamic = ["readme", "version"]
[project.optional-dependencies]
coverage = [
"coverage==7.6.4"
]
formatting = [
"black==24.10.0",
"isort==5.13.2"
]
linting = [
"pylint==3.3.1"
]
spellcheck = [
"codespell==2.3.0"
]
test_packaging = [
"build==1.2.2.post1",
"twine==5.1.1"
]
tests = [
"pytest==8.3.3"
]
type_check = [
"mypy==1.13.0",
"types-pytz==2024.2.0.20241003"
]
[project.urls]
Changelog = "https://github.com/Hochfrequenz/chronomeleon/releases"
Homepage = "https://github.com/Hochfrequenz/chronomeleon"
[tool.black]
line-length = 120
target_version = ["py310", "py311", "py312", "py313"]
[tool.isort]
line_length = 120
profile = "black"
[tool.pylint."MESSAGES CONTROL"]
max-line-length = 120
[mypy]
truethy-bool = true
[tool.mypy]
disable_error_code = ["no-untyped-def", "no-untyped-call"]
[build-system]
requires = ["hatchling>=1.8.0", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
fragments = [{ path = "README.md" }]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/_chronomeleon_version.py"
template = '''
version = "{version}"
'''
[tool.hatch.build.targets.sdist]
exclude = ["/unittests"]
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]