forked from opsdroid/opsdroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
192 lines (179 loc) · 4.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
[metadata]
name = opsdroid
license = Apache License 2.0
url = https://opsdroid.github.io/
download_url = https://github.com/opsdroid/opsdroid/releases
author = Jacob Tomlinson
author_email = [email protected]
description = "An open source ChatOps bot framework."
long_description = file: README.md
long_description_content_type = text/markdown
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Framework :: AsyncIO
Intended Audience :: Developers
Intended Audience :: System Administrators
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Communications :: Chat
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries :: Python Modules
keywords =
bot
bot-framework
opsdroid
botkit
python3
asyncio
chatops
devops
nlu
[options]
include_package_data = True
python_requires = >=3.8
zip_safe = False
packages = find:
test_suite = tests
setup_requires = babel
install_requires =
aiohttp>=3.6.2
aiohttp-middlewares>=1.2.1
appdirs>=1.4.4
arrow>=0.15.8
Babel>=2.8.0
click>=7.1.2
multidict>=4.7.6
nbconvert>=5.6.1
nbformat>=5.0.6
opsdroid-get-image-size>=0.2.2
parse>=1.16.0
puremagic>=1.9
pycron>=1.0.0
pyyaml>=5.3.1
regex>=2020.7.14
tailer>=0.4.1
websockets>=8.1
voluptuous>=0.11.7
watchgod>=0.6;python_version>="3.6"
get-video-properties>=0.1.1
bitstring>=3.1.7
rich>=10.1.0
[options.packages.find]
exclude =
tests
tests.*
modules
modules.*
docs
docs.*
[options.entry_points]
console_scripts =
opsdroid = opsdroid.cli:cli
[options.extras_require]
# connectors
connector_matrix =
bleach>=3.1.5
matrix-nio>=0.16.0
connector_matrix_e2e =
bleach>=3.1.5
matrix-nio[e2e]
connector_mattermost =
mattermostdriver>=7.0.1
connector_slack =
certifi>=2020.4.5.2
slack_sdk>=3.2.0
emoji>=0.6.0
connector_webex =
webexteamssdk>=1.6
connector_teams =
# Before 4.13, botbuilder aggressively pinned dependencies so that they conflicted with our other deps.
# see: https://github.com/microsoft/botbuilder-python/issues/1467
botbuilder-core>=4.13.0
connector_telegram =
emoji>=0.6.0
# parsers
parser_dialogflow =
dialogflow>=0.8.0,<=1.1.1
parser_watson =
ibm-watson>=4.4.1
# databases
database_redis =
aioredis>=2
database_sqlite =
aiosqlite>=0.15.0
database_mongo =
motor>=2.1.0
dnspython>=2.1.0
database_matrix =
wrapt>=1.12.1
# testing
test =
pre-commit
coveralls>=2.0.0
astroid>=2.4.1
pytest>=5.4.2
pytest-aiohttp==0.3.0
pytest-asyncio>=0.12.0
pytest-cov>=2.7.1
pytest-mock>=3.2.0
pytest-timeout>=1.4.0
pydocstyle>=5.0.2
asynctest>=0.13.0
mypy-lang>=0.5.0
mock>=4.0.2
vcrpy>=4.1.1
docs =
pytest>=5.4.2
sphinx>=3.0.4
sphinx-autodoc-typehints>=1.11.1
sphinx-click>=2.3.2
recommonmark>=0.6.0
deadlinks>=0.3.2
docutils==0.16
[tool:pytest]
asyncio_mode = auto
testpaths = opsdroid tests
norecursedirs = .git testing_config
addopts = -v
mock_use_standalone_module = true
markers =
add_response: adds a response to the ExternalAPIMockServer
matrix_connector_config: Data to setup a matrix connector
filterwarnings =
ignore:"@coroutine" decorator is deprecated since Python 3.8, use "async def" instead:DeprecationWarning
ignore:the imp module is deprecated in favour of importlib:DeprecationWarning
[flake8]
max-line-length = 80
exclude = .venv,.git,.tox,docs,www_static,venv,bin,lib,deps,build,modules,.eggs,versioneer.py
select = C,E,F,W,B,B950
ignore = E203,E501,W503,F821
[pydocstyle]
ignore = D202,D203,D212,D213,D406,D407
[versioneer]
VCS = git
style = pep440
versionfile_source = opsdroid/_version.py
versionfile_build = opsdroid/_version.py
tag_prefix =
parentdir_prefix =
[extract_messages]
input_dirs = opsdroid
output_file = opsdroid/locale/opsdroid.pot
[init_catalog]
domain = opsdroid
input_file = opsdroid/locale/opsdroid.pot
output_dir = opsdroid/locale
[update_catalog]
domain = opsdroid
input_file = opsdroid/locale/opsdroid.pot
output_dir = opsdroid/locale
[compile_catalog]
domain = opsdroid
directory = opsdroid/locale