Skip to content

Commit

Permalink
move requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
meganlkm committed Nov 2, 2016
1 parent 22bf27e commit 339d20e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion marathon_cli/__init__.py
Expand Up @@ -38,4 +38,4 @@ def get_command(self, ctx, name):
main()


__version__ = '1.0.5'
__version__ = '1.1.5'
18 changes: 10 additions & 8 deletions setup.py
Expand Up @@ -9,6 +9,15 @@
_version_re.search(f.read().decode('utf-8')).group(1)
))

requirements = [
'click==6.6',
'Jinja2==2.8',
'jmespath==0.9.0',
'pretty-json==1.0.1',
'requests==2.11.1',
'spylogger[pretty]==1.1.2',
]


setup(
name='marathon-cli',
Expand All @@ -22,14 +31,7 @@
author='meganlkm',
author_email='megan.lkm@gmail.com',
keywords=['mesos', 'marathon', 'utility'],
install_requires=[
'click==6.6',
'Jinja2==2.8',
'jmespath==0.9.0',
'pretty-json==1.0.1',
'requests==2.11.1',
'spylogger[pretty]==1.1.2',
],
install_requires=requirements,
entry_points={
'console_scripts': [
'marathon=marathon_cli:main'
Expand Down

0 comments on commit 339d20e

Please sign in to comment.