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
|
[build-system]
requires = ['flit>=1.3']
build-backend = 'flit.buildapi'
[tool.flit.metadata]
dist-name = 'legacy-api-wrap'
module = 'legacy_api_wrap'
description-file = 'README.rst'
author = 'Philipp A.'
author-email = 'flying-sheep@web.de'
home-page = 'https://github.com/flying-sheep/legacy-api-wrap'
requires-python = '>=3.6'
requires = [
'get-version >=2.0.4',
'setuptools',
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
]
[tool.flit.metadata.requires-extra]
test = [
'pytest',
'pytest-cov',
'pytest-black; python_version != "3.5"',
]
[tool.black]
line-length = 100
|