-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
85 lines (78 loc) · 2.08 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[metadata]
name = setuptools-pyproject-migration
author = David Zaslavsky, Stuart Longland
author_email = [email protected], [email protected]
description = Create a pyproject.toml file from setuptools configuration
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/diazona/setuptools-pyproject-migration
project_urls =
Documentation = https://setuptools-pyproject-migration.readthedocs.io/
Source = https://github.com/diazona/setuptools-pyproject-migration
Issues = https://github.com/diazona/setuptools-pyproject-migration/issues
classifiers =
Development Status :: 3 - Alpha
Environment :: Plugins
Framework :: Setuptools Plugin
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: System :: Archiving :: Packaging
[options]
packages = find:
package_dir =
= src
include_package_data = true
python_requires = >=3.6
install_requires =
dataclasses; python_version < "3.7"
packaging
pep508-parser
setuptools; python_version < "3.12"
setuptools >= 66.1; python_version >= "3.12"
tomlkit
typing-extensions >=4, <5
[options.packages.find]
exclude =
.github/
.readthedocs.yaml
build*
dist*
docs*
tests*
where = src
[options.extras_require]
testing =
# upstream
pytest >= 7
pytest-console-scripts >= 1.2
pytest-cov
pytest-enabler >= 2.2; \
python_version >= "3.8"
# local
backports.cached_property; \
python_version < "3.8"
importlib-metadata; \
python_version < "3.8"
# no version of pyproject-metadata supports Python 3.6
pyproject-metadata; \
python_version >= "3.7"
requests
types-setuptools
docs =
# upstream
sphinx >= 3.5
jaraco.packaging >= 9.3
rst.linker >= 1.9
furo
sphinx-lint
# local
sphinx-copybutton
[options.entry_points]
console_scripts =
setup-to-pyproject = setuptools_pyproject_migration.cli:old_main
setuptools-pyproject-migration = setuptools_pyproject_migration.cli:main
distutils.commands =
pyproject = setuptools_pyproject_migration:WritePyproject