Skip to content

Commit

Permalink
fix: travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
avara1986 committed Nov 10, 2020
1 parent da57e0f commit 9d95a94
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 18 deletions.
8 changes: 0 additions & 8 deletions consulate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,6 @@
ServerError,
)

__version__ = "1.0.0"

__author__ = "Gavin M. Roy"
__email__ = "[email protected]"

__maintainer__ = "Alberto Vara"
__maintainer_email__ = "[email protected]"

# Prevent undesired log output to the root logger
logging.getLogger("consulate").addHandler(NullHandler())

Expand Down
22 changes: 12 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import setuptools

author = __import__("consulate").__author__
author_email = __import__("consulate").__email__
maintainer = __import__("consulate").__maintainer__
maintainer_email = __import__("consulate").__maintainer_email__
version = __import__("consulate").__version__
__version__ = "1.0.0"

__author__ = "Gavin M. Roy"
__email__ = "[email protected]"

__maintainer__ = "Alberto Vara"
__maintainer_email__ = "[email protected]"

install_requires = [
"requests>=2.24.0",
Expand Down Expand Up @@ -33,12 +35,12 @@

setuptools.setup(
name="py-ms-consulate",
version=version,
author=author,
author_email=author_email,
version=__version__,
author=__author__,
author_email=__email__,
description="A Client library and command line application for the Consul",
maintainer=maintainer,
maintainer_email=maintainer_email,
maintainer=__maintainer__,
maintainer_email=__maintainer_email__,
url="https://consulate.readthedocs.org",
install_requires=install_requires,
extras_require={"unixsocket": install_extra_requires, "tests": install_tests_requires},
Expand Down

0 comments on commit 9d95a94

Please sign in to comment.