1
0
Fork 0

Adding Python3 support.

This commit is contained in:
Adam Coddington 2013-06-22 15:42:50 -07:00
parent 4567312402
commit 364a3061c2
3 changed files with 35 additions and 22 deletions

View file

@ -2,7 +2,6 @@ from setuptools import setup
tests_require=[
'django',
'mimic',
]
setup(
@ -34,5 +33,8 @@ setup(
'django_mailbox.migrations',
'django_mailbox.transports',
'django_mailbox.tests',
],
],
install_requires=[
'six'
]
)