diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:20:41 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:20:41 +0000 |
commit | b49f1524e250764592ff132af8fb0d39182620f7 (patch) | |
tree | a2c4da0c1bfc3be79c9b80180d8958804e91a07d /setup.cfg | |
parent | Initial commit. (diff) | |
download | python-build-b49f1524e250764592ff132af8fb0d39182620f7.tar.xz python-build-b49f1524e250764592ff132af8fb0d39182620f7.zip |
Adding upstream version 0.9.0.upstream/0.9.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..19688d1 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,74 @@ +[metadata] +name = build +version = 0.9.0 +description = A simple, correct PEP 517 build frontend +long_description = file: README.md +long_description_content_type = text/markdown +author = Filipe LaĆns +author_email = lains@riseup.net +license = MIT +license_file = LICENSE +classifiers = + License :: OSI Approved :: MIT License + Programming Language :: Python :: 3 + Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: Implementation :: CPython + Programming Language :: Python :: Implementation :: PyPy +project_urls = + homepage = https://github.com/pypa/build + changelog = https://pypa-build.readthedocs.io/en/stable/changelog.html + +[options] +packages = find: +install_requires = + packaging>=19.0 + pep517>=0.9.1 + colorama;os_name == "nt" # not actually a runtime dependency, only supplied as there is not "recommended dependency" support + importlib-metadata>=0.22;python_version < "3.8" + tomli>=1.0.0;python_version < "3.11" # toml can be used instead -- in case it makes bootstrapping easier +python_requires = >=3.6 +package_dir = + =src + +[options.packages.find] +where = src + +[options.entry_points] +console_scripts = + pyproject-build = build.__main__:entrypoint +pipx.run = + build = build.__main__:entrypoint + +[options.extras_require] +docs = + furo>=2021.08.31 + sphinx~=4.0 + sphinx-argparse-cli>=1.5 + sphinx-autodoc-typehints>=1.10 +test = + filelock>=3 + pytest>=6.2.4 + pytest-cov>=2.12 + pytest-mock>=2 + pytest-rerunfailures>=9.1 + pytest-xdist>=1.34 + toml>=0.10.0 + wheel>=0.36.0 + setuptools>=42.0.0;python_version < "3.10" + setuptools>=56.0.0;python_version >= "3.10" +typing = + importlib-metadata>=4.6.4 + mypy==0.950 + typing-extensions>=3.7.4.3;python_version < "3.8" +virtualenv = + virtualenv>=20.0.35 + +[options.package_data] +build = + py.typed |