|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | from setuptools import setup, find_packages |
3 | | -import sys, os |
4 | 3 |
|
5 | | - |
6 | | -version = '2.69.3' |
| 4 | +version = '2.100.0' |
7 | 5 |
|
8 | 6 | setup(name='testdroid', |
9 | 7 | version=version, |
10 | 8 | 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 |
13 | 11 | 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'], |
16 | 14 | 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]>', |
18 | 18 | |
19 | 19 | url='http://www.bitbar.com', |
20 | 20 | license='Apache License v2.0', |
21 | 21 | packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
22 | 22 | include_package_data=True, |
23 | 23 | zip_safe=True, |
24 | 24 | install_requires=[ |
25 | | - 'requests', |
| 25 | + 'requests', |
26 | 26 | ], |
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 | + }, |
33 | 32 | test_suite='testdroid.tests.test_all', |
34 | 33 | tests_require=[ |
35 | 34 | 'responses', |
|
0 commit comments