diff --git a/setup.py b/setup.py index 635611f..7f44180 100644 --- a/setup.py +++ b/setup.py @@ -1,33 +1,34 @@ import setuptools setuptools.setup( - name='consulate', - version='1.1.0a2.dev0', - description='A Client library and command line application for the Consul', - 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', 'consulate.models'], - entry_points=dict(console_scripts=['consulate=consulate.cli:main']), + name="consulate", + version="1.1.0a2.dev0", + description="A Client library and command line application for the Consul", + 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", "consulate.models"], + entry_points=dict(console_scripts=["consulate=consulate.cli:main"]), classifiers=[ - 'Development Status :: 5 - Production/Stable', - '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' + "Development Status :: 5 - Production/Stable", + "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) + zip_safe=True, +)