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:
parent
11dbe5c10f
commit
cbf79ceea0
@ -1,4 +1,6 @@
|
|||||||
-r requirements.txt
|
-r requirements.txt
|
||||||
flask
|
mock
|
||||||
boto
|
nose
|
||||||
httpretty
|
sure<1.2.4
|
||||||
|
coverage
|
||||||
|
freezegun
|
||||||
|
@ -1,10 +1,2 @@
|
|||||||
coverage
|
# Please add requirements to setup.py
|
||||||
freezegun
|
-e .
|
||||||
mock
|
|
||||||
nose
|
|
||||||
requests
|
|
||||||
sure<1.2.4
|
|
||||||
xmltodict
|
|
||||||
dicttoxml
|
|
||||||
werkzeug
|
|
||||||
six
|
|
||||||
|
6
setup.py
6
setup.py
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user