File tree Expand file tree Collapse file tree 4 files changed +41
-0
lines changed
Expand file tree Collapse file tree 4 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ recursive-include src/tzdata/ *
Original file line number Diff line number Diff line change 1+ # tzdata
2+
3+ This is a Python package containing ` zic ` -compiled binaries for the IANA time zone database.
4+ It is intended to be a fallback for systems that do not have system time zone data installed (or don't have it installed in a standard location).
5+
6+ This repository generates a ` pip ` -installable package, to be published on [ PyPI] ( https://pypi.org ) .
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools>=40.8.0" , " wheel" ]
3+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 1+ [metadata]
2+ name = tzdata
3+ version = attr:tzdata.__version__
4+ description = Provider of IANA time zone data
5+ long_description = file: README.md
6+ long_description_content_type = text/markdown
7+ # license_files =
8+ url = https://github.com/python/tzdata
9+ author = Python Software Foundation
10+ 11+ classifiers =
12+ Development Status :: 3 - Alpha
13+ Intended Audience :: Developers
14+ License :: OSI Approved :: MIT License
15+ Programming Language :: Python :: 2
16+ Programming Language :: Python :: 3
17+
18+ python_requires = *.* # This is a data-only package
19+
20+ project_urls =
21+ Bug Reports = https://github.com/python/tzdata/issues
22+ Source = https://github.com/python/tzdata
23+
24+ [options]
25+ packages = tzdata
26+ include_package_data =True
27+ package_dir =
28+ =src
29+
30+ [bdist_wheel]
31+ universal =1
You can’t perform that action at this time.
0 commit comments