-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (45 loc) · 959 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""``tamago`` lives on
https://github.com/hhollenstain/tamago
"""
from setuptools import setup, find_packages
import tamago
INSTALL_REQUIREMENTS = [
'aiohttp==3.5.4',
'asyncio',
'apex-legends==0.1.5',
'aiomeasures',
'bs4',
'coloredlogs',
'discord.py==1.2.5',
'over_stats',
'oyaml',
'pip==18.0',
'PyNaCl',
'pyowm==2.9.0',
'python-overwatch',
'pyyaml',
'requests==2.21.0',
'youtube_dl'
]
TEST_REQUIREMENTS = {
'test':[
'pytest',
'pylint',
'sure',
]
}
setup(
name='tamago',
version=tamago.VERSION,
description='Tamgo Discord Bot',
url='https://github.com/hhollenstain/tamago',
packages=find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIREMENTS,
extras_require=TEST_REQUIREMENTS,
entry_points={
'console_scripts': [
'tamago = tamago.tamago_bot:main',
],
},
)