1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

adding correct requirements

This commit is contained in:
PaoloC68 2016-04-30 18:10:39 -03:00
parent e1036c78f0
commit 6b707a9dcd
2 changed files with 3 additions and 1 deletions

View file

@ -1,2 +1,3 @@
django>=1.5,<1.6
six
future

View file

@ -45,6 +45,7 @@ setup(
],
packages=find_packages(),
install_requires=[
'six>=1.6.1'
'six>=1.6.1',
'future>=0.15.2'
]
)