-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
32 lines (27 loc) · 898 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "setuptools-py2cfg"
version = "2.1.0"
authors = [{name = "Georgi Valkov", email = "[email protected]"}]
license = {text = "Revised BSD License"}
description = "Converts a setuptools setup.py to setup.cfg"
readme = "README.md"
keywords = ["setuptools", "setup.cfg"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
]
requires-python = ">=3.6"
dependencies = ['setuptools; python_version>="3.12"']
[project.urls]
Homepage = "https://github.com/gvalkov/setuptools-py2cfg"
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
setuptools-py2cfg = "setuptools_py2cfg:main"
[tool.setuptools]
py-modules = ["setuptools_py2cfg"]