# 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 Concurrency' 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 = concurrency.get_version() # The full version, including alpha/beta/rc tags. release = concurrency.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.
# HTML translator class for the builder html_translator_class = "version.DjangoHTMLTranslator" # General information about the project. project = u'Django Concurrency' copyright = u'2012-2015, 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 = ".".join(map(str, concurrency.VERSION[0:2])) # The full version, including alpha/beta/rc tags. release = concurrency.get_version() next_version = '1.0.1' # 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. exclude_patterns = ['_build']
#!/usr/bin/env python from distutils.core import setup import concurrency NAME = 'django-concurrency' RELEASE = concurrency.get_version() base_url = 'https://github.com/saxix/django-concurrency/' VERSIONMAP = {'final': (concurrency.VERSION, 'Development Status :: 5 - Production/Stable'), 'rc': (concurrency.VERSION, 'Development Status :: 4 - Beta'), 'beta': (concurrency.VERSION, 'Development Status :: 4 - Beta'), 'alpha': ('master', 'Development Status :: 3 - Alpha'), } download_tag, development_status = VERSIONMAP[concurrency.VERSION[3]] setup( name=NAME, version=RELEASE, url='https://github.com/saxix/django-concurrency', download_url='http://pypi.python.org/packages/source/d/django-concurrency/django-concurrency-%s.tar.gz' % concurrency.get_version(), author='Stefano Apostolico', author_email='*****@*****.**', dependency_links=[], packages=[ "concurrency", "concurrency.tests", ], description="Django cuncurrent model", license="MIT License", keywords="django c", classifiers=[
#!/usr/bin/env python from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand import sys import concurrency NAME = 'django-concurrency' RELEASE = concurrency.get_version() base_url = 'https://github.com/saxix/django-concurrency/' VERSIONMAP = {'final': (concurrency.VERSION, 'Development Status :: 5 - Production/Stable'), 'rc': (concurrency.VERSION, 'Development Status :: 4 - Beta'), 'beta': (concurrency.VERSION, 'Development Status :: 4 - Beta'), 'alpha': ('master', 'Development Status :: 3 - Alpha')} download_tag, development_status = VERSIONMAP[concurrency.VERSION[3]] install_requires = [] dev_requires = [ 'psycopg2>=2.5.0,<2.6.0', "ipdb", "django_extensions", "tox>=1.6.1", ] class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = ['tests'] self.test_suite = True def run_tests(self):