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
|
[build-system]
requires = ['flit>=1.3']
build-backend = 'flit.buildapi'
[tool.flit.metadata]
module = 'get_version'
author = 'Philipp Angerer'
author-email = 'phil.angerer@gmail.com'
home-page = 'https://github.com/flying-sheep/get_version'
classifiers = [
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
]
requires-python = '>=3.6'
requires = ['setuptools']
description-file = 'README.rst'
[tool.flit.metadata.requires-extra]
test = [
'pytest',
'pytest-cov',
'pytest-black; python_version != "3.5"',
'testpath',
'pygments', # for README highlighting check
]
[tool.black]
py36 = true
include = '\.pyi?$'
|