update dependencies so that make init will work; exclude ropeproject folder in gitignore (#1111)

This commit is contained in:
Chris Evett 2017-09-07 14:30:46 -04:00 committed by Jack Danger
parent 5d8cd22b01
commit 646e45b7e4
3 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@ build/
*.swp
.DS_Store
python_env
.ropeproject/

View File

@ -8,4 +8,4 @@ freezegun
flask
boto3>=1.4.4
botocore>=1.5.77
six
six>=1.9

View File

@ -10,11 +10,11 @@ install_requires = [
"requests>=2.5",
"xmltodict",
"dicttoxml",
"six",
"six>1.9",
"werkzeug",
"pyaml",
"pytz",
"python-dateutil",
"python-dateutil<3.0.0,>=2.1",
"mock",
]