removing requirements.pip, requirements now reside solely in requirements.txt
This commit is contained in:
committed by
Thomas Goirand
parent
4de26cfd85
commit
21fd3182ba
@@ -1,2 +1,2 @@
|
||||
include requirements.pip
|
||||
include requirements.txt
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
|
||||
2
setup.py
2
setup.py
@@ -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("#")
|
||||
|
||||
Reference in New Issue
Block a user