Skip to content

Commit

Permalink
Versioning implemented in command line.
Browse files Browse the repository at this point in the history
  • Loading branch information
danilop committed Feb 26, 2014
1 parent b3b850c commit 95d78c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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'] },
)
2 changes: 1 addition & 1 deletion yas3fs/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.2'
__version__ = '2.1.3'

0 comments on commit 95d78c0

Please sign in to comment.