File tree 4 files changed +17
-13
lines changed 4 files changed +17
-13
lines changed Original file line number Diff line number Diff line change @@ -3,21 +3,24 @@ Ardy (Arthur Hendy)
3
3
4
4
.. image :: https://badge.fury.io/py/Ardy.svg
5
5
:target: https://badge.fury.io/py/Ardy
6
-
6
+ .. image :: https://img.shields.io/pypi/dm/:package.svg
7
+ :alt: PyPI - Downloads
7
8
.. image :: https://travis-ci.org/avara1986/ardy.svg?branch=master
8
9
:target: https://travis-ci.org/avara1986/ardy
9
-
10
10
.. image :: https://coveralls.io/repos/github/avara1986/ardy/badge.svg?branch=master
11
11
:target: https://coveralls.io/github/avara1986/ardy?branch=master
12
-
13
12
.. image :: https://readthedocs.org/projects/ardy/badge/?version=latest
14
13
:target: http://ardy.readthedocs.io/en/latest/?badge=latest
15
14
:alt: Documentation Status
16
-
17
15
.. image :: https://requires.io/github/avara1986/ardy/requirements.svg?branch=master
18
16
:target: https://requires.io/github/avara1986/ardy/requirements/?branch=master
19
17
: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
21
24
22
25
Ardy is a toolkit to work with AWS Lambas and implement Continuous Integration.
23
26
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,
Original file line number Diff line number Diff line change 1
1
-r requirements.txt # includes the base requirements file
2
- coveralls==1.3.0
2
+ coveralls==1.5.1
3
3
moto==1.3.2
4
4
nose==1.3.7
5
- tox==3.0.0
5
+ tox==3.5.3
6
6
mock==2.0.0
7
7
pip<10.0.0
Original file line number Diff line number Diff line change 1
1
boto3 == 1.7.2
2
- future == 0.16.0
2
+ future == 0.17.1
Original file line number Diff line number Diff line change 14
14
else :
15
15
long_description = 'See https://github.com/avara1986/ardy'
16
16
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
+
17
21
setup (
18
22
name = "Ardy" ,
19
23
version = version ,
22
26
description = "AWS Lambda toolkit" ,
23
27
long_description = long_description ,
24
28
classifiers = [
25
- " Development Status :: 4 - Beta" ,
29
+ ' Development Status :: 6 - Mature' ,
26
30
"Environment :: Console" ,
27
31
"Intended Audience :: Developers" ,
28
32
"Intended Audience :: System Administrators" ,
45
49
'ardy = ardy.core.cmd.main:Command'
46
50
]
47
51
},
48
- install_requires = [
49
- "boto3>=1.7.2" ,
50
- "future==0.16.0"
51
- ],
52
+ install_requires = required ,
52
53
zip_safe = True ,
53
54
)
You can’t perform that action at this time.
0 commit comments