Skip to content

Commit

Permalink
Cleanup setup.py, drop python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gmr committed Feb 26, 2018
1 parent 8546b4e commit 45e9957
Showing 1 changed file with 34 additions and 38 deletions.
72 changes: 34 additions & 38 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,35 @@
from setuptools import setup
import sys
import setuptools

install_requires = ['requests>=2.0.0,<3.0.0']

extras_require = {'unixsocket': ['requests-unixsocket>=0.1.4,<=1.0.0'] }

if sys.version_info < (2, 7, 0):
install_requires.append('argparse')

setup(name='consulate',
version='0.7.0-rc0',
description="A Client library for the Consul",
maintainer="Gavin M. Roy",
maintainer_email="[email protected]",
url="https://consulate.readthedocs.org",
install_requires=install_requires,
extras_require=extras_require,
license='BSD',
package_data={'': ['LICENSE', 'README.rst']},
packages=['consulate', 'consulate.api'],
entry_points=dict(console_scripts=['consulate=consulate.cli:main']),
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Systems Administration',
'Topic :: System :: Clustering',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries'],
zip_safe=True)
setuptools.setup(
name='consulate',
version='1.0.0',
description='A Client library and command line application for the Consul',
maintainer='Gavin M. Roy',
maintainer_email='[email protected]',
url='https://consulate.readthedocs.org',
install_requires=['requests>=2.0.0,<3.0.0'],
extras_require={'unixsocket': ['requests-unixsocket>=0.1.4,<=1.0.0']},
license='BSD',
package_data={'': ['LICENSE', 'README.rst']},
packages=['consulate', 'consulate.api'],
entry_points=dict(console_scripts=['consulate=consulate.cli:main']),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Systems Administration',
'Topic :: System :: Clustering',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries'
],
zip_safe=True)

0 comments on commit 45e9957

Please sign in to comment.