-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
TROUVERIE Joachim
committed
Sep 30, 2020
1 parent
64b7c48
commit 277f427
Showing
2 changed files
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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'): | ||
|
@@ -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/", | ||
|