Skip to content

Commit 0375a41

Browse files
committed
Updated requirements
1 parent 10ef3d6 commit 0375a41

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

README.rst

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@ Ardy (Arthur Hendy)
33

44
.. image:: https://badge.fury.io/py/Ardy.svg
55
:target: https://badge.fury.io/py/Ardy
6-
6+
.. image:: https://img.shields.io/pypi/dm/:package.svg
7+
:alt: PyPI - Downloads
78
.. image:: https://travis-ci.org/avara1986/ardy.svg?branch=master
89
:target: https://travis-ci.org/avara1986/ardy
9-
1010
.. image:: https://coveralls.io/repos/github/avara1986/ardy/badge.svg?branch=master
1111
:target: https://coveralls.io/github/avara1986/ardy?branch=master
12-
1312
.. image:: https://readthedocs.org/projects/ardy/badge/?version=latest
1413
:target: http://ardy.readthedocs.io/en/latest/?badge=latest
1514
:alt: Documentation Status
16-
1715
.. image:: https://requires.io/github/avara1986/ardy/requirements.svg?branch=master
1816
:target: https://requires.io/github/avara1986/ardy/requirements/?branch=master
1917
:alt: Requirements Status
20-
18+
.. image:: https://pyup.io/repos/github/avara1986/ardy/shield.svg
19+
:target: https://pyup.io/repos/github/avara1986/ardy/
20+
:alt: Updates
21+
.. image:: https://pyup.io/repos/github/avara1986/ardy/python-3-shield.svg
22+
:target: https://pyup.io/repos/github/avara1986/ardy/
23+
:alt: Python 3
2124

2225
Ardy is a toolkit to work with AWS Lambas and implement Continuous Integration.
2326
AWS Lambda is a serverless compute service that runs your code in response to events and automatically manages the underlying compute resources for you. Alas,

requirements-test.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r requirements.txt # includes the base requirements file
2-
coveralls==1.3.0
2+
coveralls==1.5.1
33
moto==1.3.2
44
nose==1.3.7
5-
tox==3.0.0
5+
tox==3.5.3
66
mock==2.0.0
77
pip<10.0.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
boto3==1.7.2
2-
future==0.16.0
2+
future==0.17.1

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
else:
1515
long_description = 'See https://github.com/avara1986/ardy'
1616

17+
# parse_requirements() returns generator of pip.req.InstallRequirement objects
18+
with open('requirements.txt') as f:
19+
required = [lib for lib in f.read().splitlines() if not lib.startswith("-e")]
20+
1721
setup(
1822
name="Ardy",
1923
version=version,
@@ -22,7 +26,7 @@
2226
description="AWS Lambda toolkit",
2327
long_description=long_description,
2428
classifiers=[
25-
"Development Status :: 4 - Beta",
29+
'Development Status :: 6 - Mature',
2630
"Environment :: Console",
2731
"Intended Audience :: Developers",
2832
"Intended Audience :: System Administrators",
@@ -45,9 +49,6 @@
4549
'ardy = ardy.core.cmd.main:Command'
4650
]
4751
},
48-
install_requires=[
49-
"boto3>=1.7.2",
50-
"future==0.16.0"
51-
],
52+
install_requires=required,
5253
zip_safe=True,
5354
)

0 commit comments

Comments
 (0)