This repository was archived by the owner on Dec 9, 2021. It is now read-only.
forked from datamachine/twx.botapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (42 loc) · 1.79 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
from setuptools import setup
import sys
__version__ = '3.2.0.dev0'
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)
print(download_url)
requirements = ['requests']
if sys.version_info < (3, 4, 0):
requirements.append('enum34')
print(requirements)
setup(name='twx.botapi',
packages=['twx', 'twx.botapi'],
version=__version__,
description='Unofficial Telegram Bot API Library and Client',
long_description=open("README.rst").read(),
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',
'Topic :: Communications :: Chat',
'Topic :: Communications :: File Sharing',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
])