-
Notifications
You must be signed in to change notification settings - Fork 108
/
setup.py
43 lines (42 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
42
43
from setuptools import setup
setup(
name='cathy',
version='4.0.1',
description='Discord chat bot using AIML artificial intelligence.',
long_description="See https://github.com/DevDungeon/cathy",
url='https://github.com/DevDungeon/ChattyCathy',
author='DevDungeon',
author_email='nanodano@devdungeon.com',
license='GPL-3.0',
packages=['cathy'],
entry_points={
'console_scripts': [
'cathy = cathy.__main__:main',
],
},
package_data={
'cathy': [
'std-startup.xml',
'aiml/alice/*.aiml',
'aiml/custom/*.aiml'
],
},
zip_safe=False,
install_requires=[
'aiohttp==3.6.2',
'async-timeout==3.0.1',
'attrs==19.3.0',
'certifi==2019.11.28',
'chardet==3.0.4',
'discord.py==1.3.1',
'idna==2.9',
'multidict==4.7.5',
'python-aiml==0.9.3',
'requests==2.23.0',
'urllib3==1.25.8',
'websockets==8.1',
'yarl==1.4.2',
'python-dotenv',
],
python_requires='>=3.7',
)