Reorganize requirements.

Stab at issue #194

Have requirements.txt use setup.py, this way there is only one place of
requirements for users.
This commit is contained in:
Ilya Sukhanov 2014-09-10 11:23:12 -04:00
parent 11dbe5c10f
commit cbf79ceea0
3 changed files with 11 additions and 15 deletions

View File

@ -1,4 +1,6 @@
-r requirements.txt -r requirements.txt
flask mock
boto nose
httpretty sure<1.2.4
coverage
freezegun

View File

@ -1,10 +1,2 @@
coverage # Please add requirements to setup.py
freezegun -e .
mock
nose
requests
sure<1.2.4
xmltodict
dicttoxml
werkzeug
six

View File

@ -3,13 +3,15 @@ from __future__ import unicode_literals
from setuptools import setup, find_packages from setuptools import setup, find_packages
install_requires = [ install_requires = [
"Jinja2",
"boto", "boto",
"dicttoxml", "dicttoxml",
"flask", "flask",
"httpretty>=0.6.1", "httpretty>=0.6.1",
"Jinja2",
"xmltodict",
"requests", "requests",
"xmltodict",
"six",
"werkzeug",
] ]
import sys import sys