forked from jwlodek/py_cui
-
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.
Have version in setup file pull from library
- Loading branch information
Showing
2 changed files
with
4 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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import setuptools | ||
from sys import platform | ||
import py_cui | ||
|
||
py_cui_version = py_cui.__version__ | ||
|
||
# Use README for long description | ||
with open('README.md', 'r') as readme_fp: | ||
|
@@ -16,7 +18,7 @@ | |
description='A widget and grid based framework for building command line user interfaces in python.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
version='0.1.2', | ||
version=py_cui_version, | ||
author='Jakub Wlodek', | ||
author_email='[email protected]', | ||
license='BSD (3-clause)', | ||
|