-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
69 lines (63 loc) · 1.29 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[metadata]
name = nbaspa-app
version = attr: nbaspa_app.__version__
description = attr: nbaspa_app.__description__
long_description = file: README.md
python_requires =
>=3.8
license = MIT license
classifiers =
Framework :: Flask
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
Click>=7.1.2,<=8.0.1
Flask==2.0.1
Flask-Assets==2.0
flask-smorest==0.35.0
gunicorn==20.1.0
Jinja2==3.0.1
nbaspa@git+https://github.com/ak-gupta/[email protected]
[options.extras_require]
docs =
sphinx
furo
qa =
black
flake8
mypy
pip-tools
build =
bumpver
tests =
pytest
pytest-cov
dev =
%(docs)s
%(qa)s
%(build)s
%(tests)s
[bumpver]
current_version = "2021.11.3"
version_pattern = "YYYY.MM.INC0"
[bumpver:file_patterns]
setup.cfg =
current_version = "{version}"
nbaspa_app/__init__.py =
__version__ = "{version}"
[flake8]
max-line-length = 100
ignore = E203,W503
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
allow_redefinition = True