-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
100 lines (89 loc) · 2.37 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
97
98
99
100
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-codicefiscale"
description = "encode / decode italian fiscal codes - codifica / decodifica del Codice Fiscale italiano."
authors = [
{ name = "Fabio Caccamo", email = "fabio.caccamo@gmail.com" },
]
keywords = [
"codicefiscale",
"codice",
"fiscale",
"cf",
"fiscal code",
"italia",
"italy",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"python-dateutil >= 2.8, < 2.10",
"python-fsutil >= 0.10.0, < 1.0.0",
"python-slugify >= 7.0.0, < 9.0.0",
]
dynamic = ["version"]
maintainers = [
{ name = "Fabio Caccamo", email = "fabio.caccamo@gmail.com" },
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.txt"
content-type = "text/plain"
[project.urls]
Homepage = "https://github.com/fabiocaccamo/python-codicefiscale"
Download = "https://github.com/fabiocaccamo/python-codicefiscale/releases"
Documentation = "https://github.com/fabiocaccamo/python-codicefiscale#readme"
Issues = "https://github.com/fabiocaccamo/python-codicefiscale/issues"
Funding = "https://github.com/sponsors/fabiocaccamo/"
Twitter = "https://twitter.com/fabiocaccamo"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| venv
)/
'''
[tool.mypy]
files = ["codicefiscale"]
ignore_missing_imports = true
install_types = true
non_interactive = true
strict = true
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = []
select = ["B", "B9", "C", "E", "F", "W"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.setuptools.packages.find]
include = ["codicefiscale*"]
[tool.setuptools.dynamic.version]
attr = "codicefiscale.metadata.__version__"