2013-09-09 09:03:00 +00:00
|
|
|
from __future__ import print_function
|
2013-11-26 15:29:00 +00:00
|
|
|
import ast
|
2013-09-09 09:03:00 +00:00
|
|
|
import os
|
|
|
|
|
import codecs
|
2012-07-21 13:56:04 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
2013-09-09 09:03:00 +00:00
|
|
|
|
2013-11-26 15:29:00 +00:00
|
|
|
class VersionFinder(ast.NodeVisitor):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
self.version = None
|
|
|
|
|
|
|
|
|
|
def visit_Assign(self, node):
|
|
|
|
|
if node.targets[0].id == '__version__':
|
|
|
|
|
self.version = node.value.s
|
|
|
|
|
|
|
|
|
|
|
2013-09-09 09:03:00 +00:00
|
|
|
def read(*parts):
|
|
|
|
|
filename = os.path.join(os.path.dirname(__file__), *parts)
|
|
|
|
|
with codecs.open(filename, encoding='utf-8') as fp:
|
|
|
|
|
return fp.read()
|
|
|
|
|
|
|
|
|
|
|
2013-11-26 15:29:00 +00:00
|
|
|
def find_version(*parts):
|
|
|
|
|
finder = VersionFinder()
|
|
|
|
|
finder.visit(ast.parse(read(*parts)))
|
|
|
|
|
return finder.version
|
2013-09-09 09:03:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name="django-configurations",
|
|
|
|
|
version=find_version("configurations", "__init__.py"),
|
2016-06-11 09:56:42 +00:00
|
|
|
url='https://django-configurations.readthedocs.io/',
|
2013-09-09 09:03:00 +00:00
|
|
|
license='BSD',
|
|
|
|
|
description="A helper for organizing Django settings.",
|
|
|
|
|
long_description=read('README.rst'),
|
|
|
|
|
author='Jannis Leidel',
|
|
|
|
|
author_email='jannis@leidel.info',
|
|
|
|
|
packages=['configurations'],
|
2015-02-19 09:51:32 +00:00
|
|
|
entry_points={
|
|
|
|
|
'console_scripts': [
|
|
|
|
|
'django-cadmin = configurations.management:execute_from_command_line',
|
|
|
|
|
],
|
|
|
|
|
},
|
2013-09-09 09:03:00 +00:00
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'Framework :: Django',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python',
|
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
|
'Topic :: Utilities',
|
|
|
|
|
],
|
|
|
|
|
zip_safe=False,
|
|
|
|
|
)
|