setup.cfg (1357B)
1 [metadata] 2 name = pluggy 3 description = plugin and hook calling mechanisms for python 4 long_description = file: README.rst 5 long_description_content_type = text/x-rst 6 license = MIT 7 platforms = unix, linux, osx, win32 8 author = Holger Krekel 9 author_email = holger@merlinux.eu 10 url = https://github.com/pytest-dev/pluggy 11 classifiers = 12 Development Status :: 6 - Mature 13 Intended Audience :: Developers 14 License :: OSI Approved :: MIT License 15 Operating System :: POSIX 16 Operating System :: Microsoft :: Windows 17 Operating System :: MacOS :: MacOS X 18 Topic :: Software Development :: Testing 19 Topic :: Software Development :: Libraries 20 Topic :: Utilities 21 Programming Language :: Python :: Implementation :: CPython 22 Programming Language :: Python :: Implementation :: PyPy 23 Programming Language :: Python :: 3 24 Programming Language :: Python :: 3 :: Only 25 Programming Language :: Python :: 3.8 26 Programming Language :: Python :: 3.9 27 Programming Language :: Python :: 3.10 28 Programming Language :: Python :: 3.11 29 30 [options] 31 packages = 32 pluggy 33 python_requires = >=3.8 34 package_dir = 35 =src 36 setup_requires = 37 setuptools-scm 38 [options.extras_require] 39 dev = 40 pre-commit 41 tox 42 testing = 43 pytest 44 pytest-benchmark 45 [options.package_data] 46 pluggy = py.typed 47 48 [devpi:upload] 49 formats=sdist.tgz,bdist_wheel