forked from vacanza/holidays
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
73 lines (61 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "holidays"
description = "Generate and work with holidays in Python"
license = { file = "LICENSE" }
readme = "README.rst"
requires-python = ">=3.8"
dynamic = ["version"]
authors = [{ email = "dr.prodigy.github@gmail.com", name = "Maurizio Montel" }]
dependencies = ["python-dateutil"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Localization",
]
keywords = ["holidays", "calendar", "l10n"]
maintainers = [
{ email = "ark@cho.red", name = "Arkadii Yakovets" },
{ email = "jhellico@gmail.com", name = "Serhii Murza" },
]
[project.urls]
Repository = "https://github.com/vacanza/python-holidays/"
Documentation = "https://python-holidays.readthedocs.io/en/latest/"
Changelog = "https://github.com/vacanza/python-holidays/releases"
Downloads = "https://pypi.org/project/holidays/"
[tool.black]
line-length = 99
target-version = ["py38", "py39", "py310", "py311"]
[tool.coverage.run]
branch = true
omit = ["scripts/*", "setup.py", "tests/*"]
[tool.isort]
known_first_party = ["holidays", "tests"]
line_length = 99
multi_line_output = 3
no_inline_sort = true
profile = "black"
skip = ["docs"]
[tool.mypy]
strict = false
[[tool.mypy.overrides]]
module = "holidays.countries.*"
disable_error_code = ["override"]
[[tool.mypy.overrides]]
module = "holidays.groups.*"
disable_error_code = "attr-defined"
[tool.rstcheck]
ignore_directives = ["automodule"]
ignore_languages = ["python"]
[tool.setuptools.dynamic]
version = {attr = "holidays.__version__"}
[tool.setuptools.packages.find]
include = ["holidays*"]