Skip to content

Commit

Permalink
fix: Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
TROUVERIE Joachim committed Sep 30, 2020
1 parent 64b7c48 commit 277f427
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 0 additions & 8 deletions pybeeryaml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,4 @@
"Fermentable",
"MashProfile",
"MashStep",
"__version__",
"__author__",
"__url__",
"__email__",
]
__version__ = "1.2"
__author__ = "TROUVERIE Joachim"
__email__ = "[email protected]"
__url__ = "https://github.com/j0ack/pybeeryaml"
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@


from setuptools import setup, find_packages
from pybeeryaml import __author__, __url__, __version__, __email__

__version__ = "1.3"
__author__ = "TROUVERIE Joachim"
__email__ = "[email protected]"
__url__ = "https://github.com/j0ack/pybeeryaml"

requirements = []
for line in open('REQUIREMENTS.txt', 'r'):
Expand All @@ -37,6 +40,7 @@
version=__version__,
description=__doc__,
long_description=long_description,
long_description_content_type="text/x-rst",
author=__author__,
author_email=__email__,
url="https://pythonhosted.org/pybeeryaml/",
Expand Down

0 comments on commit 277f427

Please sign in to comment.