-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (46 loc) · 1.19 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[metadata]
name = templatepy
version = 0.0.3
author = Lars B. Rollik
author_email = [email protected]
license = BSD 3-Clause License
license_files = LICENSE
description = templatepy: template for derivative python packages
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/larsrollik/templatepy
project_urls =
Repository = https://github.com/larsrollik/templatepy
Issue Tracker = https://github.com/larsrollik/templatepy/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
zip_safe = False
include_package_data = True
package_dir =
packages = find:
python_requires = >=3.10
install_requires =
black
[options.packages.find]
where =
[options.extras_require]
dev =
black
bump2version
pytest-cov # implies: pytest, coverage dependencies
pre-commit
flake8
[options.entry_points]
console_scripts =
templatepy-entrypoint = templatepy.__init__:run
[options.package_data]
* = *.config
[flake8]
ignore = E203, E266, E501, W503, F403, F401
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9
exclude = __init__.py,build,__pycache__,.git,tests