forked from dateutil/dateutil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (68 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
[bdist_wheel]
universal = 1
[metadata]
name = python-dateutil
description = Extensions to the standard Python datetime module
author = Gustavo Niemeyer
author_email = gustavo@niemeyer.net
maintainer = Paul Ganssle
maintainer_email = dateutil@python.org
url = https://dateutil.readthedocs.io
long_description_content_type = text/x-rst
license = Dual License
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries
[options]
zip_safe = True
setup_requires = setuptools_scm
install_requires = six >= 1.5
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*
packages = find:
test_suite = dateutil.test
[options.packages.find]
exclude =
dateutil.test
[options.package_data]
dateutil.zoneinfo = dateutil-zoneinfo.tar.gz
[sdist]
formats = gztar
[tool:pytest]
python_files=
test_*.py
*_test.py
*_solution.py
xfail_strict = true
filterwarnings =
error
error::DeprecationWarning
error::PendingDeprecationWarning
markers =
gettz
import_star
isoparser
parserinfo
rrule
rruleset
rrulestr
smoke
tz_resolve_imaginary
tzfile
tzlocal
tzoffset
tzstr