-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
53 lines (51 loc) · 1.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import re
import os
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name="django-envie",
version="1.0.0",
description="A module for Django that allows your app to"
" use environment variables in a file",
long_description="Django-envie helps your Django app to be"
" aware of environment variables set in a .py or .yml file.",
author="Oluwafemi Sule",
author_email="[email protected]",
url="https://github.com/andela-osule/django-envie",
download_url="https://github.com/andela-osule/django-envie.git",
license="MIT License",
packages=[
"django_envie",
],
include_package_data=True,
install_requires=[
"Django>=1.8.0,<2.0.0",
"PyYAML>=3.11"
],
setup_requires=[
'pytest-runner',
],
tests_require=[
"pytest",
"pytest-cov",
"pytest-ordering",
"coverage",
],
zip_safe=False,
test_suite="tests.runtests.start",
classifiers=[
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)