forked from Code-Society-Lab/grace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (42 loc) · 1.15 KB
/
setup.py
File metadata and controls
executable file
·43 lines (42 loc) · 1.15 KB
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, find_packages
setup(
name='Grace',
version='1.20.0',
author='Code Society Lab',
description='The Code Society community Bot',
url="https://github.com/Code-Society-Lab/grace",
project_urls={
"Documentation": "https://github.com/Code-Society-Lab/grace/wiki",
"Issue tracker": "https://github.com/Code-Society-Lab/grace/issues",
"Discord server": "https://discord.gg/code-society-823178343943897088",
},
license="GNU General Public License v3.0",
python_requires='>=3.9.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
'python-dotenv',
'coloredlogs',
'logger',
'sqlalchemy',
'sqlalchemy-utils',
'discord>=2.1',
'pytest',
'emoji>=2.1.0',
'nltk',
'discord-pretty-help==2.0.4',
'requests',
'pillow',
'geopy',
'pytz',
'timezonefinder',
'mypy',
'alembic==1.8.1',
'configparser',
'pygithub',
'googletrans==4.0.0-rc1',
'openai==0.26.1',
'coverage',
],
scripts=['bin/grace']
)