-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (47 loc) · 1.04 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
44
45
46
47
48
49
50
"""``AutoChannel-Bot`` lives on
https://github.com/hhollenstain/autochannel-bot
"""
from setuptools import setup, find_packages
import autochannel
INSTALL_REQUIREMENTS = [
# 'aiohttp==3.6.3',
'aiohttp',
'asyncio',
'aiomeasures',
'coloredlogs',
'dblpy',
'discord.py==2.3.2',
'dblpy',
'flask_sqlalchemy',
# 'pip==18.0',
'pip',
'profanityfilter',
'prometheus_client',
'psycopg2-binary',
'pyyaml',
# 'requests==2.21.0',
'requests',
'sqlalchemy',
]
TEST_REQUIREMENTS = {
'test':[
'pytest',
'pylint',
'sure',
]
}
setup(
name='autochannel',
version=autochannel.VERSION,
description='AutoChannel Discord Bot',
url='https://github.com/hhollenstain/autochannel-bot',
packages=find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIREMENTS,
extras_require=TEST_REQUIREMENTS,
entry_points={
'console_scripts': [
'autochannel = autochannel.autochannel_bot:main',
],
},
)