-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addition of version information to package and command line (#205)
* Addition of version information. * Tweak to have setup.py pull from __version__ * Addition of command line arg to print version.
- Loading branch information
Francesco Di Natale
authored
Dec 3, 2019
1 parent
4eb5671
commit 40009ee
Showing
3 changed files
with
8 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from maestrowf import __version__ | ||
from setuptools import setup, find_packages | ||
|
||
setup(name='maestrowf', | ||
description='A tool and library for specifying and conducting general ' | ||
'workflows.', | ||
version='1.1.5dev', | ||
version=__version__, | ||
author='Francesco Di Natale', | ||
author_email='[email protected]', | ||
url='https://github.com/llnl/maestrowf', | ||
|