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
|
[metadata]
name = pyroma
version = 5.0
description = Test your project's packaging friendliness
long_description = file: README.rst, CHANGES.txt
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
keywords = pypi, quality, testing
author = Lennart Regebro
author_email = regebro@gmail.com
url = https://github.com/regebro/pyroma
license = MIT
project_urls =
Source Code = https://github.com/regebro/pyroma
[options]
zip_safe = True
include_package_data = True
packages = find:
package_dir =
= .
python_requires = >=3.9
install_requires =
build>=0.7.0
docutils
packaging
pygments
requests
setuptools>=61
trove-classifiers>=2022.6.26
[options.packages.find]
where = .
[options.extras_require]
test =
pytest
setuptools>=60
zest.releaser[recommended]
flit_core>=3.4,<4
[options.entry_points]
console_scripts =
pyroma = pyroma:main
zest.releaser.prereleaser.before =
pyroma = pyroma:zester
[flake8]
max-line-length=120
[tool:pytest]
testpaths =
pyroma/tests.py
[check-manifest]
ignore =
.pre-commit-hooks.yaml
[zest.releaser]
create-wheel = yes
|