|
1 | | -""" |
2 | | -pip-review lets you smoothly manage all available PyPI updates. |
3 | | -""" |
4 | | -import sys |
| 1 | +""" pip-review lets you smoothly manage all available PyPI updates. """ |
| 2 | + |
5 | 3 | from setuptools import setup |
6 | 4 |
|
7 | 5 |
|
8 | 6 | setup( |
9 | 7 | name='pip-review', |
10 | | - version='1.1.0', |
| 8 | + version='1.1.1', |
11 | 9 | url='https://github.com/jgonggrijp/pip-review', |
12 | 10 | license='BSD', |
13 | 11 | author='Julian Gonggrijp, Vincent Driessen', |
|
23 | 21 | 'pip-review = pip_review.__main__:main', |
24 | 22 | ], |
25 | 23 | }, |
26 | | - #include_package_data=True, |
| 24 | + # include_package_data=True, |
27 | 25 | zip_safe=False, |
28 | 26 | platforms='any', |
29 | 27 | install_requires=[ |
|
33 | 31 | python_requires='>=2.7, !=3.0, !=3.1, !=3.2', |
34 | 32 | classifiers=[ |
35 | 33 | # As from https://pypi.python.org/pypi?%3Aaction=list_classifiers |
36 | | - #'Development Status :: 1 - Planning', |
37 | | - #'Development Status :: 2 - Pre-Alpha', |
38 | | - #'Development Status :: 3 - Alpha', |
39 | | - #'Development Status :: 4 - Beta', |
| 34 | + # 'Development Status :: 1 - Planning', |
| 35 | + # 'Development Status :: 2 - Pre-Alpha', |
| 36 | + # 'Development Status :: 3 - Alpha', |
| 37 | + # 'Development Status :: 4 - Beta', |
40 | 38 | 'Development Status :: 5 - Production/Stable', |
41 | | - #'Development Status :: 6 - Mature', |
42 | | - #'Development Status :: 7 - Inactive', |
| 39 | + # 'Development Status :: 6 - Mature', |
| 40 | + # 'Development Status :: 7 - Inactive', |
43 | 41 | 'Programming Language :: Python', |
44 | 42 | 'Programming Language :: Python :: 2', |
45 | | - #'Programming Language :: Python :: 2.3', |
46 | | - #'Programming Language :: Python :: 2.4', |
47 | | - #'Programming Language :: Python :: 2.5', |
48 | | - #'Programming Language :: Python :: 2.6', |
| 43 | + # 'Programming Language :: Python :: 2.3', |
| 44 | + # 'Programming Language :: Python :: 2.4', |
| 45 | + # 'Programming Language :: Python :: 2.5', |
| 46 | + # 'Programming Language :: Python :: 2.6', |
49 | 47 | 'Programming Language :: Python :: 2.7', |
50 | 48 | 'Programming Language :: Python :: 3', |
51 | | - #'Programming Language :: Python :: 3.0', |
52 | | - #'Programming Language :: Python :: 3.1', |
53 | | - #'Programming Language :: Python :: 3.2', |
| 49 | + # 'Programming Language :: Python :: 3.0', |
| 50 | + # 'Programming Language :: Python :: 3.1', |
| 51 | + # 'Programming Language :: Python :: 3.2', |
54 | 52 | 'Programming Language :: Python :: 3.3', |
55 | 53 | 'Programming Language :: Python :: 3.4', |
56 | 54 | 'Programming Language :: Python :: 3.5', |
|
0 commit comments