-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
44 lines (40 loc) · 922 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
40
41
42
43
44
[bdist_wheel]
universal = 1
[metadata]
name = stackholm
version = attr: stackholm.__version__
author = Ertuğrul Noyan Keremoğlu
author_email = ertugkeremoglu@gmail.com
description = Stack based context management framework.
license = MIT
license_files = LICENSE
url = https://github.com/ertgl/stackholm/
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
Typing :: Typed
[options]
packages = find:
include_package_data = true
zip_safe = true
[pycodestyle]
count = True
ignore = E402
max-line-length = 119
statistics = True
[flake8]
max-complexity = 15
max-line-length = 119
per-file-ignores =
**/__init__.py: F401,F403,E501
exclude =
__pycache__,
.git,
.venv,
.history
**/migrations/**.py