-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
49 lines (43 loc) · 1.43 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
[metadata]
name = slack-blockkit
version = attr: slack_blockkit.__version__
description = Slack block kit builder for generating block messages programatically.
long_description = file: README.rst, CHANGES.rst
author = Kevin Shelley
author_email = webmaster@codedevils.org
url = https://github.com/ASU-CodeDevils/slack-blockkit
keywords = slack, blockkit, block, kit, block kit, api
license = MIT
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = find:
[flake8]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
[pycodestyle]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules
[mypy]
python_version = 3.7
check_untyped_defs = True
ignore_missing_imports = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
[mypy-*.migrations.*]
# Django migrations should not produce any errors:
ignore_errors = True
[coverage:run]
include = slack_blockkit/*, tests/*
omit = *migrations*, *tests*, slack_blockkit/view_payload*