-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
66 lines (59 loc) · 1.54 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
[metadata]
name = glados
version = 0.0.1-dev24
description = A library to help with slackbot development
long_description = file: README.md
long_description_content_type = text/markdown
keywords = slack slackbot
license = BSD-derived (http://www.repoze.org/LICENSE.txt)
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
url = https://github.com/zpriddy/GLaDOS
project_urls =
Bug Tracker = https://github.com/zpriddy/GLaDOS/issues
Blog = https:/zpriddy.com
Source Code = https://github.com/zpriddy/GLaDOS/
author = Zachary Priddy
author_email = py@zpriddy.com
[options]
package_dir=
=src
packages=find:
python_requires = >=3.5
install_requires =
slackclient==2.5.0 # fixes bug with LinkButtonElement
pyyaml
requests
sqlalchemy[postgresql]
[options.entry_points]
console_scripts =
glados-servelocal = glados.servelocal:run
[options.packages.find]
where=src
[options.extras_require]
testing =
pytest
pytest-cov
coverage
docs =
Sphinx
sphinx-rtd-theme
sphinx-autodoc-typehints
servelocal =
Flask
[bdist_wheel]
universal=0
[tool:pytest]
ignore=tests/fixtures/
python_files = test_*.py
testpaths =
tests
addopts = -W always --cov --cov-report=term-missing