removing requirements.pip, requirements now reside solely in requirements.txt

This commit is contained in:
Gabriel Falcao
2013-12-12 12:25:15 -05:00
committed by Thomas Goirand
parent 4de26cfd85
commit 21fd3182ba
7 changed files with 5 additions and 26 deletions

View File

@@ -1,2 +1,2 @@
include requirements.pip
include requirements.txt

View File

@@ -424,7 +424,7 @@ mkvirtualenv --distribute --no-site-packages HTTPretty
#### install the dependencies
```console
pip install -r requirements.pip
pip install -r requirements.txt
```
#### next steps:

View File

@@ -12,7 +12,7 @@ mkvirtualenv --distribute --no-site-packages HTTPretty
## installing the dependencies
```console
pip install -r requirements.pip
pip install -r requirements.txt
```
## next steps

View File

@@ -1,12 +0,0 @@
argparse==1.2.1
coverage==3.5.3
httplib2==0.7.6
misaka==1.0.2
mock==1.0.1
nose==1.2.1
requests==1.1.0
steadymark==0.4.5
sure>=1.2.1
tornado==2.4
tox==1.4.2
urllib3

View File

@@ -22,8 +22,8 @@ redis==2.7.1
requests==1.1.0
speakers==0.0.3
steadymark==0.4.5
sure==1.2.1
tornado==2.4
tox==1.4.2
virtualenv==1.8.2
Werkzeug==0.9.1
sure==1.2.2

View File

@@ -36,7 +36,7 @@ HTTPRETTY_PATH = os.path.abspath(os.path.join(__file__, os.pardir))
def test_packages():
test_reqs = os.path.join(HTTPRETTY_PATH, 'requirements.pip')
test_reqs = os.path.join(HTTPRETTY_PATH, 'requirements.txt')
tests_require = [
line.strip() for line in open(test_reqs).readlines()
if not line.startswith("#")

View File

@@ -1,9 +0,0 @@
[tox]
envlist = py26, py27, py33
[testenv]
deps = -r{toxinidir}/requirements.pip
commands =
{envpython} setup.py test
nosetests tests/unit
nosetests tests/functional