-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (40 loc) · 1.77 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
# 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 setup_helpers import get_version
setup(
# metadata
name='django-configglue',
version=get_version('django_configglue/__init__.py'),
author='Ricardo Kirkner',
author_email='[email protected]',
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',
],
# content
packages=find_packages(exclude=['testproject*']),
install_requires=['django >= 1.0.2-final', 'configglue >= 1.0'],
# tests
test_suite='testproject.testrunner.runtests',
tests_require=['mock'],
)