-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 895 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
31
32
33
34
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='Quadbot',
version='1.0',
description='multiplatform chatbot',
long_description=readme(),
classifiers=['License :: OSI Approved :: MIT',
'Programming Language :: Python :: 3.5+',
'Topic :: Chat Bot'],
keywords='chatbot search',
url='http://github.com/wlgranados/quadbot',
author='William Granados',
author_email='[email protected]',
license='MIT',
packages=['venv'],
platforms=['deb', 'rpm'],
install_requires=[
'PyYAML',
'websocket',
'requests',
'simplejson',
'websocket-client',
'pylatex',
'pyimgur',
'markdown',
'pytest'
],
include_package_data=True,
zip_safe=False)