-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
39 lines (35 loc) · 811 Bytes
/
setup.cfg
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
[metadata]
name = tdd
description = A simple test driven development template project
author = Kevin Meinon
author_email = [email protected]
license = MIT
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
platforms = Linux, Windows
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.11
[options]
packages = tdd
python_requires = >=3.10
install_requires =
rich>=13
package_dir =
=src
zip_safe = no
[options.extras_require]
testing =
pytest>=7
pytest-cov>=4
flake8>=6
tox>=4
mypy>=1.5
[options.package_data]
tdd = py.typed
[flake8]
max-line-length = 120