forked from regebro/tzlocal
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (50 loc) · 1.38 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
[metadata]
name = tzlocal
description = tzinfo object for the local timezone
long_description = file: README.rst, CHANGES.txt
version = 5.0.2.dev0
author = Lennart Regebro
author_email = [email protected]
project_urls =
Source code = https://github.com/regebro/tzlocal
Issue tracker = https://github.com/regebro/tzlocal/issues
license = MIT
keywords = timezone
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
Operating System :: Unix
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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
[options]
packages = find:
python_requires = >= 3.8
zip_safe = True
install_requires =
backports.zoneinfo; python_version < "3.9"
tzdata; platform_system == "Windows"
[options.packages.find]
include = tzlocal
[options.extras_require]
devenv =
pytest >= 4.3
pytest-mock >= 3.3
pytest-cov
black
flake8
check_manifest
pyroma
zest.releaser
[zest.releaser]
create-wheel = yes
[flake8]
max-line-length=120
# black and flake8 differs in opinion here, and I can't change black:
ignore=E203