-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
42 lines (38 loc) · 1.07 KB
/
setup.cfg
File metadata and controls
42 lines (38 loc) · 1.07 KB
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
[metadata]
name = django-slack-processor
version = attr: slackbot.__version__
description = Django app to manage a slack bot with support for custom message processors
author = PPB - InfoSec Engineering
author_email = surface@paddypowerbetfair.com
url = https://github.com/surface-security/django-slack-processor
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.9
Environment :: Web Environment
Topic :: Software Development
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.9
install_requires =
Django >= 4.2, <6
slack-sdk==3.19.2
django-logbasecommand < 1
[options.packages.find]
exclude =
tests
tests.*
[coverage:run]
source = slackbot
[coverage:report]
show_missing = True
skip_covered = True