Skip to content
This repository has been archived by the owner on Oct 14, 2020. It is now read-only.

Commit

Permalink
Reorganize requirements.
Browse files Browse the repository at this point in the history
Stab at issue getmoto#194

Have requirements.txt use setup.py, this way there is only one place of
requirements for users.
  • Loading branch information
Ilya Sukhanov committed Sep 10, 2014
1 parent 11dbe5c commit cbf79ce
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
8 changes: 5 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
-r requirements.txt
flask
boto
httpretty
mock
nose
sure<1.2.4
coverage
freezegun
12 changes: 2 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,2 @@
coverage
freezegun
mock
nose
requests
sure<1.2.4
xmltodict
dicttoxml
werkzeug
six
# Please add requirements to setup.py
-e .
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
from setuptools import setup, find_packages

install_requires = [
"Jinja2",
"boto",
"dicttoxml",
"flask",
"httpretty>=0.6.1",
"Jinja2",
"xmltodict",
"requests",
"xmltodict",
"six",
"werkzeug",
]

import sys
Expand Down

0 comments on commit cbf79ce

Please sign in to comment.