-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved advisory lock related messaging
- Loading branch information
Philip Stefou
committed
Oct 26, 2021
1 parent
9ad85cd
commit 53f4c3a
Showing
3 changed files
with
10 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
__VERSION__ = '0.1.10' |
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 |
---|---|---|
|
@@ -6,13 +6,16 @@ | |
here = Path(__file__).parent | ||
long_description = (here / "README.md").read_text() | ||
|
||
with open("./migreat/__init__.py") as ver_file: | ||
version = ver_file.read().strip().split('=')[1].strip()[1:-1] | ||
|
||
# Load the requirements file in here to avoid duplication | ||
with open("./requirements.txt", "r") as req_file: | ||
requirements = [r for r in req_file.readlines() if r.strip()] | ||
|
||
setup( | ||
name='MiGreat-cli', | ||
version='0.1.9', | ||
version=version, | ||
packages=find_packages(), | ||
author='Hashibuto', | ||
author_email='[email protected]', | ||
|