1[metadata]
2name = setuptools
3version = 61.1.0
4author = Python Packaging Authority
5author_email = [email protected]
6description = Easily download, build, install, upgrade, and uninstall Python packages
7long_description = file:README.rst
8url = https://github.com/pypa/setuptools
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	Topic :: Software Development :: Libraries :: Python Modules
16	Topic :: System :: Archiving :: Packaging
17	Topic :: System :: Systems Administration
18	Topic :: Utilities
19keywords = CPAN PyPI distutils eggs package management
20project_urls =
21	Documentation = https://setuptools.pypa.io/
22
23[options]
24packages = find_namespace:
25python_requires = >=3.7
26install_requires =
27
28[options.packages.find]
29exclude =
30	build*
31	dist*
32	docs*
33	tests*
34	*.tests
35	*.tests.*
36	tools*
37
38[options.extras_require]
39testing =
40	pytest >= 6
41	pytest-checkdocs >= 2.4
42	pytest-flake8
43	pytest-black >= 0.3.7; \
44	python_implementation != "PyPy"
45	pytest-cov; \
46	python_implementation != "PyPy"
47	pytest-mypy >= 0.9.1; \
48	python_implementation != "PyPy"
49	pytest-enabler >= 1.0.1
50	pytest-perf
51
52	mock
53	flake8-2020
54	virtualenv>=13.0.0
55	wheel
56	pip>=19.1 # For proper file:// URLs support.
57	jaraco.envs>=2.2
58	pytest-xdist
59	jaraco.path>=3.2.0
60	build[virtualenv]
61	filelock>=3.4.0
62	pip_run>=8.8
63	ini2toml[lite]>=0.9
64	tomli-w>=1.0.0
65testing-integration =
66	pytest
67	pytest-xdist
68	pytest-enabler
69	virtualenv>=13.0.0
70	tomli
71	wheel
72	jaraco.path>=3.2.0
73	jaraco.envs>=2.2
74	build[virtualenv]
75	filelock>=3.4.0
76docs =
77	sphinx
78	jaraco.packaging >= 9
79	rst.linker >= 1.9
80	jaraco.tidelift >= 1.4
81
82	pygments-github-lexers==0.0.5
83	sphinx-favicon
84	sphinx-inline-tabs
85	sphinxcontrib-towncrier
86	furo
87ssl =
88certs =
89
90[options.entry_points]
91distutils.commands =
92	alias = setuptools.command.alias:alias
93	bdist_egg = setuptools.command.bdist_egg:bdist_egg
94	bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
95	build_clib = setuptools.command.build_clib:build_clib
96	build_ext = setuptools.command.build_ext:build_ext
97	build_py = setuptools.command.build_py:build_py
98	develop = setuptools.command.develop:develop
99	dist_info = setuptools.command.dist_info:dist_info
100	easy_install = setuptools.command.easy_install:easy_install
101	egg_info = setuptools.command.egg_info:egg_info
102	install = setuptools.command.install:install
103	install_egg_info = setuptools.command.install_egg_info:install_egg_info
104	install_lib = setuptools.command.install_lib:install_lib
105	install_scripts = setuptools.command.install_scripts:install_scripts
106	rotate = setuptools.command.rotate:rotate
107	saveopts = setuptools.command.saveopts:saveopts
108	sdist = setuptools.command.sdist:sdist
109	setopt = setuptools.command.setopt:setopt
110	test = setuptools.command.test:test
111	upload_docs = setuptools.command.upload_docs:upload_docs
112setuptools.finalize_distribution_options =
113	parent_finalize = setuptools.dist:_Distribution.finalize_options
114	keywords = setuptools.dist:Distribution._finalize_setup_keywords
115distutils.setup_keywords =
116	eager_resources = setuptools.dist:assert_string_list
117	namespace_packages = setuptools.dist:check_nsp
118	extras_require = setuptools.dist:check_extras
119	install_requires = setuptools.dist:check_requirements
120	tests_require = setuptools.dist:check_requirements
121	setup_requires = setuptools.dist:check_requirements
122	python_requires = setuptools.dist:check_specifier
123	entry_points = setuptools.dist:check_entry_points
124	test_suite = setuptools.dist:check_test_suite
125	zip_safe = setuptools.dist:assert_bool
126	package_data = setuptools.dist:check_package_data
127	exclude_package_data = setuptools.dist:check_package_data
128	include_package_data = setuptools.dist:assert_bool
129	packages = setuptools.dist:check_packages
130	dependency_links = setuptools.dist:assert_string_list
131	test_loader = setuptools.dist:check_importable
132	test_runner = setuptools.dist:check_importable
133	use_2to3 = setuptools.dist:invalid_unless_false
134egg_info.writers =
135	PKG-INFO = setuptools.command.egg_info:write_pkg_info
136	requires.txt = setuptools.command.egg_info:write_requirements
137	entry_points.txt = setuptools.command.egg_info:write_entries
138	eager_resources.txt = setuptools.command.egg_info:overwrite_arg
139	namespace_packages.txt = setuptools.command.egg_info:overwrite_arg
140	top_level.txt = setuptools.command.egg_info:write_toplevel_names
141	depends.txt = setuptools.command.egg_info:warn_depends_obsolete
142	dependency_links.txt = setuptools.command.egg_info:overwrite_arg
143
144[egg_info]
145tag_build =
146tag_date = 0
147
148[sdist]
149formats = zip
150
151