示例#1
0
import cmsplugin_blog

CLASSIFIERS = [
    'Development Status :: 5 - Production/Stable',
    'Environment :: Web Environment',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: BSD License',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Framework :: Django',
]

setup(
    name='cmsplugin-blog',
    version=cmsplugin_blog.get_version(),
    description='This is a blog app/plugin for django-cms 2.2',
    long_description=open(os.path.join(os.path.dirname(__file__),
                                       'README.txt')).read(),
    author='Oyvind Saltvik',
    author_email='*****@*****.**',
    url='http://github.com/fivethreeo/cmsplugin-blog/',
    packages=find_packages(),
    package_data={
        'cmsplugin_blog': [
            'static/cmsplugin_blog/*',
            'locale/*/LC_MESSAGES/*',
        ]
    },
    classifiers=CLASSIFIERS,
    test_suite="cmsplugin_blog.test.run_tests.run_tests",
示例#2
0
source_encoding = 'utf-8'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'cmsplugin-blog'
copyright = unicode('Øyvind Saltvik', 'utf-8')

# 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 = cmsplugin_blog.get_version()
# The full version, including alpha/beta/rc tags.
release = cmsplugin_blog.get_version()

# The language for content autogenerated by Sphinx. Refer to documentation for
# a list of supported languages.
language = "en"

# 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 documents that shouldn't be included in the build.
#unused_docs = []
示例#3
0
source_encoding = 'utf-8'

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'cmsplugin-blog'
copyright = unicode('Øyvind Saltvik', 'utf-8')

# 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 = cmsplugin_blog.get_version()
# The full version, including alpha/beta/rc tags.
release = cmsplugin_blog.get_version()

# The language for content autogenerated by Sphinx. Refer to documentation for
# a list of supported languages.
language = "en"

# 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 documents that shouldn't be included in the build.
#unused_docs = []
示例#4
0
import cmsplugin_blog

CLASSIFIERS = [
        'Development Status :: 5 - Production/Stable',
        'Environment :: Web Environment',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Framework :: Django',
]

setup(
    name='cmsplugin-blog',
    version=cmsplugin_blog.get_version(),
    description='This is a blog app/plugin for django-cms 2.2',
    long_description=open(os.path.join(os.path.dirname(__file__), 'README.txt')).read(),
    author='Oyvind Saltvik',
    author_email='*****@*****.**',
    url='http://github.com/fivethreeo/cmsplugin-blog/',
    packages=find_packages(),
    package_data={
        'cmsplugin_blog': [
            'static/cmsplugin_blog/*',
            'locale/*/LC_MESSAGES/*',
        ]
    },
    classifiers=CLASSIFIERS,
    test_suite = "cmsplugin_blog.test.run_tests.run_tests",
    include_package_data=True,