forked from wemake-services/django-split-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
76 lines (68 loc) · 2.07 KB
/
setup.py
File metadata and controls
76 lines (68 loc) · 2.07 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- coding: utf-8 -*-
"""
Visit https://pypi.python.org/pypi/django-split-settings
for more information.
"""
import io
from setuptools import setup
from split_settings import __version__
INSTALL_REQUIRES = ['Django>=1.5', ]
TESTS_REQUIRE = [
'six',
'pytest',
'pytest-env',
]
SETUP_REQUIRES = [
'pytest-runner',
]
with io.open('README.rst', 'r', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
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.'
),
long_description=LONG_DESCRIPTION,
author='Nikita Sobolev, Visa Kopu, Antti Kaihola',
author_email='mail@sobolevn.me',
url='http://github.com/sobolevn/django-split-settings',
packages=[
'split_settings',
],
include_package_data=True,
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
setup_requires=SETUP_REQUIRES,
zip_safe=False,
keywords=[
'django',
'settings',
'configuration',
'config',
],
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',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)