-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
62 lines (53 loc) · 1.36 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
[metadata]
name = pepubot
version = 0.1.0
description = Friday Bottle Lottery Bot for Slack
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = pepu, bot, Friday, bottle, lottery, Slack
url = https://github.com/andersinno/pepubot/
author = Tuomas Suutari
author_email = tuomas.suutari@anders.fi
maintainer = Anders Innovations
maintainer_email = support@anders.fi
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Topic :: Communications :: Chat
Typing :: Typed
[options]
include_package_data = True
packages = find:
install_requires =
aiofiles
python-dateutil
pytz
slackclient[optional]
zip_safe = False
[options.entry_points]
console_scripts =
pepubot = pepubot.__main__:main
[bdist_wheel]
universal = 1
[tool:pytest]
norecursedirs = .* build dist venv
[flake8]
exclude = .tox,dist,venv
max-complexity = 10
[isort]
[mypy-setuptools]
ignore_missing_imports = True
[mypy-slack]
ignore_missing_imports = True
[mypy-aiofiles]
ignore_missing_imports = True