# The encoding of source files. #source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' # General information about the project. project = u'Django Geo' copyright = u'2012, Stefano Apostolico' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = geo.get_version() # The full version, including alpha/beta/rc tags. release = geo.get_version() # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files.
#!/usr/bin/env python from distutils.core import setup from distutils.command.install import INSTALL_SCHEMES import os import geo as app NAME = app.NAME RELEASE = app.get_version() VERSIONMAP = {'final': (app.VERSION, 'Development Status :: 5 - Production/Stable'), 'rc': (app.VERSION, 'Development Status :: 4 - Beta'), 'beta': (app.VERSION, 'Development Status :: 4 - Beta'), 'alpha': ('master', 'Development Status :: 3 - Alpha'), } download_tag, development_status = VERSIONMAP[app.VERSION[3]] for scheme in INSTALL_SCHEMES.values(): scheme['data'] = scheme['purelib'] packages, data_files = [], [] root_dir = os.path.dirname(__file__) if root_dir != '': os.chdir(root_dir) def fullsplit(path, result=None): """ Split a pathname into components (the opposite of os.path.join) in a platform-neutral way. """ if result is None: result = []