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