Skip to content

Commit 5494a6f

Browse files
committed
Add Python project configuration
1 parent 8ee1464 commit 5494a6f

File tree

4 files changed

+41
-0
lines changed

4 files changed

+41
-0
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include src/tzdata/ *

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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).

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=40.8.0", "wheel"]
3+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
author_email = [email protected]
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

0 commit comments

Comments
 (0)