-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
48 lines (42 loc) · 1.85 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
from setuptools import setup
import sys
__version__ = '3.6.2'
github_tag = __version__
if 'dev' in __version__:
github_tag = 'master'
download_url = 'https://github.com/datamachine/twx.botapi/archive/{}.zip'
download_url = download_url.format(github_tag)
requirements = ['requests', 'attrs']
if sys.version_info < (3, 4, 0):
requirements.append('enum34')
setup(name='twx.botapi',
packages=['twx', 'twx.botapi'],
version=__version__,
description='Unofficial Telegram Bot API Library and Client',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author='Vince Castellano, Phillip Lopo',
author_email='[email protected], [email protected]',
keywords=['datamachine', 'telex', 'telegram', 'bot', 'api', 'rpc', 'twx', 'chat'],
url='https://github.com/datamachine/twx.botapi',
download_url=download_url,
install_requires=requirements,
platforms=['Linux', 'FreeBSD', 'BSD', 'Unix', 'Mac', 'OS X', 'Windows'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Communications :: Chat',
'Topic :: Communications :: File Sharing',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
])