forked from wemake-services/django-split-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 1.75 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
# -*- coding: utf-8 -*-
"""
Visit https://pypi.python.org/pypi/django-split-settings
for more information.
"""
from setuptools import setup
from split_settings import __version__
INSTALL_REQUIRES = ['Django>=1.5.1', ]
TEST_REQUIRES = ['pytest', 'six', ] # pylint is not happy without this line.
setup(
name='django-split-settings',
version=__version__,
description=(
'Organize Django settings into multiple files and directories. '
'Easily override and modify settings. Use wildcards and optional '
'settings files.'
),
author='Nikita Sobolev, Visa Kopu, Antti Kaihola',
author_email='[email protected]',
url='http://github.com/sobolevn/django-split-settings',
packages=[
'split_settings',
],
include_package_data=True,
install_requires=INSTALL_REQUIRES,
test_requires=TEST_REQUIRES,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.5',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)