py-incremental/setup.cfg

57 lines
1.4 KiB
INI
Raw Normal View History

2020-10-08 17:36:14 +03:00
[metadata]
name = incremental
version = attr: incremental._setuptools_version
2020-10-08 17:36:14 +03:00
maintainer = Amber Brown
maintainer_email = hawkowl@twistedmatrix.com
url = https://github.com/twisted/incremental
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
2020-10-08 17:36:14 +03:00
license = MIT
description = "A small library that versions your Python projects."
long_description = file: README.rst
2021-03-21 15:40:34 +02:00
install_requires =
2021-07-21 02:00:13 +03:00
setuptools
2021-03-21 15:40:34 +02:00
typing >= 3.7.4.3; python_version < '3.5'
2020-10-08 17:36:14 +03:00
[options]
packages = find:
package_dir = =src
zip_safe = False
[options.packages.find]
where = src
exclude = exampleproj
2021-03-21 16:04:20 +02:00
[options.package_data]
incremental = py.typed
2020-10-08 17:36:14 +03:00
[options.entry_points]
distutils.setup_keywords =
use_incremental = incremental:_get_version
[options.extras_require]
scripts =
click>=6.0
twisted>=16.4.0
2021-03-21 15:40:34 +02:00
mypy =
%(scripts)s
mypy==0.812
2020-10-08 17:36:14 +03:00
[bdist_wheel]
2020-10-08 17:36:14 +03:00
universal = 1
2021-03-23 02:16:25 +02:00
[flake8]
max-line-length = 88
extend-ignore =
E203, # whitespace before : is not PEP8 compliant (& conflicts with black)