Skip to content

Commit

Permalink
Moved requirements files to its own folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Jun 28, 2015
1 parent b958ba9 commit 9d29fb7
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ branches:
# command to install requirements
install:
- pip install coveralls
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install -r requirements.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements3.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install -r requirements/python2.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements/python3.txt; fi
- python setup.py -q develop

# command to run tests, e.g. python setup.py test
Expand Down
1 change: 0 additions & 1 deletion requirements.txt → requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
lxml==3.4.4
pdfminer==20140328
PyPDF2==1.24
requests==2.7.0
six==1.9.0
Expand Down
18 changes: 18 additions & 0 deletions requirements/development.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
blessings==1.6
bpython==0.14.2
cffi==1.1.2
coverage==3.7.1
cryptography==0.9.1
curtsies==0.1.19
enum34==1.0.4
greenlet==0.4.7
idna==2.0
ipaddress==1.0.7
ndg-httpsclient==0.4.0
pyasn1==0.1.8
pycparser==2.14
Pygments==2.0.2
pyOpenSSL==0.15.1
requests==2.7.0
six==1.9.0
wheel==0.24.0
2 changes: 2 additions & 0 deletions requirements/development2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r python2.txt
-r development.txt
2 changes: 2 additions & 0 deletions requirements/development3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r python3.txt
-r development.txt
2 changes: 0 additions & 2 deletions requirements-docs.txt → requirements/documentation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ pathtools==0.1.2
Pygments==2.0.2
pytz==2015.4
PyYAML==3.11
six==1.9.0
snowballstemmer==1.2.0
Sphinx==1.3.1
sphinx-autobuild==0.5.2
sphinx-rtd-theme==0.1.8
tornado==4.2
watchdog==0.8.3
wheel==0.24.0
2 changes: 2 additions & 0 deletions requirements/python2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r base.txt
pdfminer==20140328
2 changes: 2 additions & 0 deletions requirements/python3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-r base.txt
pdfminer.six==20140915
6 changes: 0 additions & 6 deletions requirements3.txt

This file was deleted.

0 comments on commit 9d29fb7

Please sign in to comment.