Skip to content

Commit

Permalink
Fixed dependency and version issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidnazari committed Jul 5, 2015
1 parent f6a7fa1 commit 907d4da
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 15 deletions.
1 change: 0 additions & 1 deletion awsclpy/version.py

This file was deleted.

3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
awscli==1.7.36
six==1.9.0
-e .
18 changes: 6 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
import pip
from setuptools import setup
from pip.req import parse_requirements
from awsclpy.version import VERSION

try:
install_reqs = parse_requirements("./requirements.txt",
session=pip.download.PipSession())
reqs = [str(ir.req) for ir in install_reqs]
except Exception as e:
reqs = []

setup(name='awsclpy',
version=VERSION,
description='Chain AWSCLI commands.',
version='0.3.1',
description='Chain AWSCLI commands in Python.',
long_description='Run AWSCLI commands and use their outputs in next ' +
'commands.',
classifiers=[
Expand Down Expand Up @@ -41,5 +32,8 @@
url='http://github.com/hamidnazari/awsclpy',
license='MIT',
packages=['awsclpy'],
install_requires=reqs,
install_requires=[
'awscli==1.7.36',
'six==1.9.0'
],
zip_safe=False)

0 comments on commit 907d4da

Please sign in to comment.