-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
30 lines (28 loc) · 976 Bytes
/
setup.py
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
from setuptools import setup
setup(name='microsoftbotframework',
version='0.3.3',
description='A wrapper for the microsoft bot framework API',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Communications :: Chat',
],
keywords='microsoft bot framework flask celery',
url='https://github.com/Grungnie/microsoftbotframework',
author='Matthew Brown',
author_email='[email protected]',
license='MIT',
packages=['microsoftbotframework'],
install_requires=[
"Flask",
"celery",
"requests",
"pyyaml",
],
extras_require={'test': ['nose', 'redis', 'pymongo']},
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose', 'redis', 'pymongo'],
)