Пример #1
0
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import cmsplugin_filer_gallery

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

setup(
    name='cmsplugin-filer-gallery',
    version=cmsplugin_filer_gallery.get_version(),
    description='Django CMS plugin for django-filer-gallery',
    long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
    author='Oyvind Saltvik',
    author_email='*****@*****.**',
    url='http://github.com/fivethreeo/cmsplugin-filer-gallery.git',
    packages=find_packages(),
    classifiers = CLASSIFIERS,
    test_suite = "cmsplugin_filer_gallery.test.run_tests.run_tests",
    include_package_data=True,
    zip_safe=False,
    install_requires=['django-cms', 'django-positions'],
)
Пример #2
0
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
import cmsplugin_filer_gallery

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

setup(
    name='cmsplugin-filer-gallery',
    version=cmsplugin_filer_gallery.get_version(),
    description='Django CMS plugin for django-filer-gallery',
    long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
    author='Oyvind Saltvik',
    author_email='*****@*****.**',
    url='http://github.com/fivethreeo/cmsplugin-filer-gallery.git',
    packages=find_packages(),
    classifiers = CLASSIFIERS,
    test_suite = "cmsplugin_filer_gallery.test.run_tests.run_tests",
    include_package_data=True,
    zip_safe=False,
    install_requires=['django-cms', 'django-filer-gallery'],
)
Пример #3
0
# General information about the project.
project = u'cmsplugin-filer-gallery'
copyright = u'2011, \xc3yvind Saltvik'

# 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.

path = os.path.split(os.path.dirname(__file__))[0]
path = os.path.split(path)[0]
sys.path.insert(0, path)
import cmsplugin_filer_gallery

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