This repository has been archived by the owner on May 23, 2023. It is now read-only.
forked from iluminite/django-configglue
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (50 loc) · 1.91 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
54
55
56
# Copyright 2010-2011 Canonical Ltd. This software is licensed under the
# GNU Lesser General Public License version 3 (see the file LICENSE).
from setuptools import setup, find_packages
from prezi.setuputils.git import fetch_version
setup(
# metadata
name='prezi-django-configglue',
version=fetch_version(__file__),
author='Ricardo Kirkner',
author_email='ricardo.kirkner@canonical.com',
maintainer='Szilveszter Farkas',
maintainer_email='szilveszter.farkas@prezi.com',
description='Django commands for managing configglue generated settings',
long_description='Django commands for managing configglue generated '
'settings from the command line.\n'
'Commands are available to:\n'
' - get the value of a setting\n'
' - list all settings used (and their values)\n'
' - list all settings used, including django global settings (and\n'
' their values)\n'
' - locate the definition of a setting (useful when the configuration\n'
' is defined throughout several files)\n'
' - validate settings (make sure the values match the defined schema)',
license='LGPLv3',
keywords=['django', 'configglue', 'configuration', 'settings'],
url='https://launchpad.net/django-configglue/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Utilities',
],
install_requires=[
'django<2',
'six',
'configglue'
],
tests_require=[
'mock',
'nose',
'coverage'
],
# content
packages=find_packages(exclude=['testproject*']),
# tests
test_suite='testproject.testrunner.runtests',
)