Revert "Fix requirements files chaos."

This reverts commit e7595fe14c which broke the build
This commit is contained in:
Gabriel Falcão 2015-12-13 03:08:21 -02:00
parent a615e3e5a6
commit 947c47e7df
10 changed files with 43 additions and 42 deletions

View File

@ -14,8 +14,7 @@ env:
- TEST_TYPE=functional
install:
- pip install -r requirements/use.txt
- pip install -r requirements/test.txt
- pip install -r requirements.txt -r test-requirements.txt
script:
- make $TEST_TYPE

View File

@ -1,4 +1,6 @@
recursive-include requirements *.txt
include requirements.txt
include test-requirements.txt
include dev-requirements.txt
recursive-include tests *.py
include tests/functional/fixtures/playback-*.json
include COPYING

View File

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

View File

@ -530,7 +530,7 @@ install the dependencies
.. code:: console
pip install -r requirements/dev.txt
pip install -r requirements.txt
next steps:
-----------

View File

@ -1,4 +1,4 @@
-r use.txt
-r requirements.txt
coverage
tox
markment
@ -6,4 +6,4 @@ steadymark
nose
rednose
mock
sure
sure

View File

@ -12,8 +12,7 @@ mkvirtualenv HTTPretty
## installing the dependencies
```console
<<<<<<< HEAD
pip install -r requirements/test.txt
pip install -r requirements.txt
```
## next steps

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
@ -50,7 +50,7 @@ def read_version():
def parse_requirements(path):
"""Rudimentary parser for the `requirements/use.txt` file
"""Rudimentary parser for the `requirements.txt` file
We just want to separate regular packages from links to pass them to the
`install_requires` and `dependency_links` params of the `setup()`
@ -59,7 +59,7 @@ def parse_requirements(path):
try:
requirements = [req.strip() for req in local_file(path).splitlines()]
except IOError:
raise RuntimeError("Couldn't find the `requirements/use.txt' file :(")
raise RuntimeError("Couldn't find the `requirements.txt' file :(")
links = []
pkgs = []
@ -82,34 +82,35 @@ local_file = lambda *f: \
install_requires, dependency_links = \
parse_requirements('requirements/use.txt')
parse_requirements('requirements.txt')
setup(name='httpretty',
version=read_version(),
description='HTTP client mock for Python',
long_description=local_file('README.rst'),
author='Gabriel Falcao',
author_email='gabriel@nacaolivre.org',
url='http://github.com/gabrielfalcao/httpretty',
zip_safe=False,
packages=find_packages(exclude=['*tests*']),
tests_require=parse_requirements('test-requirements.txt'),
install_requires=install_requires,
dependency_links=dependency_links,
license='MIT',
test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Testing'
],
setup(
name='httpretty',
version=read_version(),
description='HTTP client mock for Python',
long_description=local_file('README.rst'),
author='Gabriel Falcao',
author_email='gabriel@nacaolivre.org',
url='http://github.com/gabrielfalcao/httpretty',
zip_safe=False,
packages=find_packages(exclude=['*tests*']),
tests_require=parse_requirements('test-requirements.txt'),
install_requires=install_requires,
dependency_links=dependency_links,
license='MIT',
test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Testing'
],
)

View File

@ -2,8 +2,8 @@
envlist = py26, py27, py34
[testenv]
deps = -r{toxinidir}/requirements/use.txt
-r{toxinidir}/requirements/test.txt
deps = -r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands = nosetests -s tests/unit
[testenv:functional]