From 95d78c0c62975ee115b38fc6c21916797b9f2d73 Mon Sep 17 00:00:00 2001 From: Danilo Poccia Date: Wed, 26 Feb 2014 19:58:03 +0100 Subject: [PATCH] Versioning implemented in command line. --- setup.py | 4 +++- yas3fs/_version.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 475caae..8a1aa22 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,8 @@ execfile('yas3fs/_version.py') +install_requires = ['boto>=2.25.0', 'fusepy>=2.0.2'] + # Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all # include this as the replacement for optparse. if sys.version_info[:2] < (2, 7): @@ -15,6 +17,6 @@ packages=['yas3fs'], author='Danilo Poccia', author_email='dpoccia@gmail.com', - install_requires=['boto>=2.25.0', 'fusepy>=2.0.2'], + install_requires=install_requires, entry_points = { 'console_scripts': ['yas3fs = yas3fs:main'] }, ) diff --git a/yas3fs/_version.py b/yas3fs/_version.py index f811561..2d31b1c 100644 --- a/yas3fs/_version.py +++ b/yas3fs/_version.py @@ -1 +1 @@ -__version__ = '2.1.2' +__version__ = '2.1.3'