1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-10 06:48: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 django>=1.5,<1.6
six six
future

View file

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