Skip to content

Commit

Permalink
Merge pull request #82 from even-even/minor_refactor_setup_py
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp authored Apr 9, 2020
2 parents f107912 + 8178199 commit 04dcfe0
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
pip-review lets you smoothly manage all available PyPI updates.
"""
""" pip-review lets you smoothly manage all available PyPI updates. """

from setuptools import setup


Expand All @@ -22,7 +21,7 @@
'pip-review = pip_review.__main__:main',
],
},
#include_package_data=True,
# include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
Expand All @@ -32,24 +31,24 @@
python_requires='>=2.7, !=3.0, !=3.1, !=3.2',
classifiers=[
# As from https://pypi.python.org/pypi?%3Aaction=list_classifiers
#'Development Status :: 1 - Planning',
#'Development Status :: 2 - Pre-Alpha',
#'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
#'Programming Language :: Python :: 2.3',
#'Programming Language :: Python :: 2.4',
#'Programming Language :: Python :: 2.5',
#'Programming Language :: Python :: 2.6',
# 'Programming Language :: Python :: 2.3',
# 'Programming Language :: Python :: 2.4',
# 'Programming Language :: Python :: 2.5',
# 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
#'Programming Language :: Python :: 3.0',
#'Programming Language :: Python :: 3.1',
#'Programming Language :: Python :: 3.2',
# 'Programming Language :: Python :: 3.0',
# 'Programming Language :: Python :: 3.1',
# 'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
Expand Down

0 comments on commit 04dcfe0

Please sign in to comment.