forked from bitbar/testdroid-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.27 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
version = '2.69.2'
setup(name='testdroid',
version=version,
description="Testdroid API client for Python",
long_description="""\
Testdroid API client for Python""",
classifiers=['Operating System :: OS Independent',
'Topic :: Software Development',
'Intended Audience :: Developers'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='testdroid rest api client',
author='Henri Kivelä <[email protected]>, Sakari Rautiainen <[email protected]>, Teppo Malinen <[email protected]>, Jarno Tuovinen <[email protected]>, Atte Keltanen <[email protected]>',
author_email='[email protected]',
url='http://www.bitbar.com',
license='Apache License v2.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'requests',
],
entry_points = {
'console_scripts': [
'testdroid = testdroid:main',
],
},
test_suite='testdroid.tests.test_all',
tests_require=[
'responses',
],
)