Feature/display version (#2)

* --version and version displays the version
This commit is contained in:
Dave Gallant
2018-03-14 00:58:39 -04:00
committed by GitHub
parent 1ba2aa54fd
commit 803fa0affa
8 changed files with 49 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
import io # for python2
from os import path
from setuptools import setup
from version import __version__ as version
here = path.abspath(path.dirname(__file__))
@@ -11,7 +12,7 @@ with io.open(path.join(here, 'README.rst'), encoding='utf-8') as f:
setup(
name='rfd',
version='0.0.6',
version=version,
packages=['rfd'],
keywords='cli redflagdeals',
install_requires=[