mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
import codecs
|
|
import re
|
|
from os import path
|
|
from setuptools import setup
|
|
|
|
|
|
def read(*parts):
|
|
file_path = path.join(path.dirname(__file__), *parts)
|
|
return codecs.open(file_path).read()
|
|
|
|
|
|
def find_version(*parts):
|
|
version_file = read(*parts)
|
|
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
|
|
version_file, re.M)
|
|
if version_match:
|
|
return version_match.group(1)
|
|
raise RuntimeError("Unable to find version string.")
|
|
|
|
|
|
setup(
|
|
name='django-configurations',
|
|
version=find_version('configurations', '__init__.py'),
|
|
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',
|
|
license='BSD',
|
|
url='http://django-configurations.readthedocs.org/',
|
|
packages=[
|
|
'configurations',
|
|
'configurations.tests',
|
|
'configurations.tests.settings',
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.5',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Topic :: Utilities',
|
|
],
|
|
)
|