1[metadata]
2license_file = LICENSE
3name = zipp
4author = Jason R. Coombs
5author_email = jaraco@jaraco.com
6description = Backport of pathlib-compatible object wrapper for zip files
7long_description = file:README.rst
8url = https://github.com/jaraco/zipp
9classifiers =
10	Development Status :: 5 - Production/Stable
11	Intended Audience :: Developers
12	License :: OSI Approved :: MIT License
13	Programming Language :: Python :: 3
14	Programming Language :: Python :: 3 :: Only
15
16[options]
17py_modules = zipp
18packages = find:
19include_package_data = true
20python_requires = >=3.6
21install_requires =
22setup_requires = setuptools_scm[toml] >= 3.4.1
23
24[options.extras_require]
25testing =
26	pytest >= 3.5, !=3.7.3
27	pytest-checkdocs >= 1.2.3
28	pytest-flake8
29	pytest-black >= 0.3.7; python_implementation != "PyPy"
30	pytest-cov
31	pytest-mypy; python_implementation != "PyPy"
32	jaraco.test >= 3.2.0
33
34	jaraco.itertools
35	func-timeout
36docs =
37	sphinx
38	jaraco.packaging >= 3.2
39	rst.linker >= 1.9
40
41[options.entry_points]
42
43[egg_info]
44tag_build =
45tag_date = 0
46
47