We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628ed38 commit b3dffc5Copy full SHA for b3dffc5
setup.py
@@ -8,11 +8,11 @@
8
here = os.path.abspath(os.path.dirname(__file__))
9
README = io.open(os.path.join(here, 'README.rst'), encoding="utf8").read()
10
11
-version = '0.4.4'
+version = '0.4.5'
12
author = 'joke2k'
13
description = "Django-environ allows you to utilize 12factor inspired environment " \
14
"variables to configure your Django application."
15
-install_requires = ['django', 'six']
+install_requires = ['six']
16
17
setup(name='django-environ',
18
version=version,
@@ -47,6 +47,7 @@
47
license='MIT License',
48
packages=find_packages(),
49
platforms=["any"],
50
+ tests_require=['flask'],
51
include_package_data=True,
52
test_suite='environ.test.load_suite',
53
zip_safe=False,
0 commit comments