From c39cc80d7abbb3592efb2d86cfc1953d19eedd21 Mon Sep 17 00:00:00 2001 From: James O'Brien Date: Sun, 8 Apr 2018 02:30:54 -0700 Subject: [PATCH] bump version --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8a138439..4e729fb5 100644 --- a/setup.py +++ b/setup.py @@ -8,11 +8,11 @@ here = os.path.abspath(os.path.dirname(__file__)) README = io.open(os.path.join(here, 'README.rst'), encoding="utf8").read() -version = '0.4.4' +version = '0.4.5' author = 'joke2k' description = "Django-environ allows you to utilize 12factor inspired environment " \ "variables to configure your Django application." -install_requires = ['django', 'six'] +install_requires = ['six'] setup(name='django-environ', version=version, @@ -47,6 +47,7 @@ license='MIT License', packages=find_packages(), platforms=["any"], + tests_require=['flask'], include_package_data=True, test_suite='environ.test.load_suite', zip_safe=False,