Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
ctheune committed Jan 14, 2025
1 parent b0eaa0f commit b490957
Showing 1 changed file with 29 additions and 28 deletions.
57 changes: 29 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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,
)

0 comments on commit b490957

Please sign in to comment.