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
|
[build-system]
requires = ['flit_scm']
build-backend = 'flit_scm:buildapi'
[project]
name = 'pytest-console-scripts'
authors = [{ name = 'Vasily Kuznetsov', email = 'kvas.it@gmail.com' }]
maintainers = [
{ name = 'Vasily Kuznetsov', email = 'kvas.it@gmail.com' },
{ name = 'Kyle Benesch', email = '4b796c65+github@gmail.com' },
]
readme = 'README.md'
license = { file = 'LICENSE' }
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Topic :: Software Development :: Testing',
'Typing :: Typed',
]
requires-python = '>=3.8'
dynamic = ['version', 'description']
dependencies = [
'pytest >=4.0.0',
"importlib_metadata >=3.6; python_version < '3.10'",
]
[tool.setuptools_scm]
write_to = 'pytest_console_scripts/_version.py'
[project.urls]
Source = 'https://github.com/kvas-it/pytest-console-scripts'
Changelog = 'https://github.com/kvas-it/pytest-console-scripts/blob/master/CHANGELOG.md'
Issues = 'https://github.com/kvas-it/pytest-console-scripts/issues'
Forum = 'https://github.com/kvas-it/pytest-console-scripts/discussions'
[project.entry-points.'pytest11']
console-scripts = 'pytest_console_scripts'
[tool.flit.sdist]
include = ['*.md', 'MANIFEST.in', 'tox.ini', 'tests/']
|