Skip to content
This repository has been archived by the owner on Sep 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #130 from agraubert/pyup
Browse files Browse the repository at this point in the history
Enable pyup on dev
  • Loading branch information
agraubert committed Apr 27, 2017
2 parents e5689b8 + ba7e946 commit 65a9948
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .pyup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
branch: dev
label_prs: dependencies
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ python:
- '3.5'
- '3.6'
install:
- pip install rsa
- pip install pycrypto
- pip install -e .
- pip install coveralls
script:
- coverage run --source=agutil --omit=*__init__.py -m unittest discover -v
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pycrypto
rsa
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from setuptools import setup
from pip.req import parse_requirements

import sys
if sys.version_info<(3,3):
Expand Down Expand Up @@ -45,8 +46,10 @@
]
},
install_requires=[
'pycrypto',
'rsa'
str(package.req) for package in parse_requirements(
'requirements.txt',
session=''
)
],
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 65a9948

Please sign in to comment.