forked from Zagrebelin/ptbtest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.47 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
import codecs
from distutils.core import setup
from setuptools import find_packages
with codecs.open("readme.rst", "r", "utf-8") as fd:
setup(
name='ptb_unittest',
version='1.1.1',
packages=find_packages(),
url='https://github.com/GauthamramRavichandran/ptbtest',
license='GNU General Public License v3.0',
author='Gauthamram Ravichandran',
author_email='[email protected]',
description='A test suite for use with python-telegram-bot',
long_description=fd.read(),
install_requires=['python-telegram-bot'],
keywords='python telegram bot unittest',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
)