mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Fixed packaging and the package description.
This commit is contained in:
parent
775e1b9225
commit
2685a2c532
2 changed files with 4 additions and 3 deletions
|
|
@ -5,7 +5,7 @@ django-configurations
|
|||
:alt: Build Status
|
||||
:target: https://secure.travis-ci.org/jezdez/django-configurations
|
||||
|
||||
django-configurations eases Django site configuration by relying
|
||||
django-configurations eases Django project configuration by relying
|
||||
on the composability of Python classes. It extends the notion of
|
||||
Django's module based settings loading with well established
|
||||
object oriented programming patterns.
|
||||
|
|
|
|||
5
setup.py
5
setup.py
|
|
@ -21,8 +21,8 @@ def find_version(*parts):
|
|||
setup(
|
||||
name='django-configurations',
|
||||
version=find_version('configurations', '__init__.py'),
|
||||
description='A helper class for handling configuration defaults '
|
||||
'of packaged apps gracefully.',
|
||||
description='A helper for organizing Django project settings by relying '
|
||||
'on well established programming patterns.',
|
||||
long_description=read('README.rst'),
|
||||
author='Jannis Leidel',
|
||||
author_email='jannis@leidel.info',
|
||||
|
|
@ -31,6 +31,7 @@ setup(
|
|||
packages=[
|
||||
'configurations',
|
||||
'configurations.tests',
|
||||
'configurations.tests.settings',
|
||||
],
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
|
|
|
|||
Loading…
Reference in a new issue