forked from DevDungeon/Cathy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 798 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
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='[email protected]',
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=[
'disnake==2.4.0',
'python-aiml',
'python-dotenv',
],
python_requires='>=3.7',
)