-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.15 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
from codecs import open
from setuptools import setup
from pytbo import __version__ as version
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
with open('HISTORY.rst', 'r', 'utf-8') as f:
history = f.read()
install_requires = [
"requests >=2.1.0,<3.0.0",
"requests-toolbelt >=0.6.0,<0.7.0"
]
setup(
name='pytbo',
version=version,
description='Python Telegram Bots made easy',
long_description=readme + '\n\n' + history,
author='Alessandro Costa',
author_email='[email protected]',
url='https://github.com/kostola/pytbo',
packages=[ 'pytbo' ],
install_requires=install_requires,
license='Apache 2.0',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
)
)