forked from szastupov/aiotg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (26 loc) · 956 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
from setuptools import setup, find_packages
version_file = open('VERSION')
version = version_file.read().strip()
version_file.close()
setup(
name='aiotg',
version=version,
description='Asynchronous Python API for building Telegram bots',
url='http://szastupov.github.io/aiotg',
author='Stepan Zastupov',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries'
],
keywords='asyncio telegram',
packages=find_packages(exclude=['examples', 'docs', 'tests*']),
install_requires=['aiohttp>=1.0.0', 'watchdog>=0.8.3'],
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest', 'testfixtures']
)