-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
61 lines (56 loc) · 1.41 KB
/
setup.cfg
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
[metadata]
name = sedate
version = attr: sedate.__version__
description = Date/time helper functions used by various Seantis packages.
long_description = file: README.rst, HISTORY.rst
license = GPLv2
author = Seantis GmbH
author_email = [email protected]
url = http://github.com/seantis/sedate
project_urls =
Bug Tracker = http://github.com/seantis/sedate/issues
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Programming Language :: Python
Programming Language :: Python :: 3
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
Programming Language :: Python :: Implementation :: CPython
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
[options]
include_package_data = True
zip_safe = False
packages =
sedate
python_requires = >=3.9
install_requires =
pytz
[options.extras_require]
dev =
bump-my-version
flake8
flake8-type-checking
mypy
pre-commit
pre-commit-uv
ruff
tox
tox-uv
types-pytz
uv
[options.package_data]
sedate =
py.typed
[bdist_wheel]
universal=1
[flake8]
select = TC0,TC1
per_file_ignores =
*.pyi: TC
tests/**.py: TC