-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
47 lines (43 loc) · 1.22 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
[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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
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.8
install_requires =
pytz
[options.extras_require]
dev =
bump2version
pre-commit
tox
[options.package_data]
sedate =
py.typed
[bdist_wheel]
universal=1