-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
31 lines (26 loc) · 886 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
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'aiohttp==2.3.7',
'asyncio==3.4.3',
'graypy==0.2.14',
'pillow==5.2.0',
'redis==3.0.1'
]
about = {}
with open(os.path.join(here, 'balebot', '__version__.py'), mode='rt', encoding='utf-8') as f:
exec(f.read(), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
license=about['__license__'],
long_description="\n\n".join([open("README.md").read(), open("CHANGELOG.md").read()]),
long_description_content_type='text/markdown',
url=about['__url__'],
install_requires=requires,
packages=find_packages(),
)