Skip to content

Commit 271ad7f

Browse files
authored
Merge pull request #131 from lastverb/master
Version 2.100.0 - waiting for virus scan when uploading files
2 parents 058f083 + 75725fa commit 271ad7f

File tree

3 files changed

+246
-181
lines changed

3 files changed

+246
-181
lines changed

setup.py

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
11
# -*- coding: utf-8 -*-
22
from setuptools import setup, find_packages
3-
import sys, os
43

5-
6-
version = '2.69.3'
4+
version = '2.100.0'
75

86
setup(name='testdroid',
97
version=version,
108
description="Testdroid API client for Python",
11-
long_description="""\
12-
Testdroid API client for Python""",
9+
long_description="""\nTestdroid API client for Python""",
10+
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
1311
classifiers=['Operating System :: OS Independent',
14-
'Topic :: Software Development',
15-
'Intended Audience :: Developers'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
12+
'Topic :: Software Development',
13+
'Intended Audience :: Developers'],
1614
keywords='testdroid rest api client',
17-
author='Henri Kivelä <[email protected]>, Sakari Rautiainen <[email protected]>, Teppo Malinen <[email protected]>, Jarno Tuovinen <[email protected]>, Atte Keltanen <[email protected]>',
15+
author='Henri Kivelä <[email protected]>, Sakari Rautiainen <[email protected]>, '
16+
'Teppo Malinen <[email protected]>, Jarno Tuovinen <[email protected]>, '
17+
'Atte Keltanen <[email protected]>',
1818
author_email='[email protected]',
1919
url='http://www.bitbar.com',
2020
license='Apache License v2.0',
2121
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
2222
include_package_data=True,
2323
zip_safe=True,
2424
install_requires=[
25-
'requests',
25+
'requests',
2626
],
27-
28-
entry_points = {
29-
'console_scripts': [
30-
'testdroid = testdroid:main',
31-
],
32-
},
27+
entry_points={
28+
'console_scripts': [
29+
'testdroid = testdroid:main',
30+
],
31+
},
3332
test_suite='testdroid.tests.test_all',
3433
tests_require=[
3534
'responses',

0 commit comments

Comments
 (0)