コード例 #1
0
ファイル: setup.py プロジェクト: pombredanne/django-slickgrid
from setuptools import setup, find_packages
import os
import slickgrid

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='django-slickgrid',
    version=slickgrid.get_version(),
    description='Helpers for using slickgrid with django',
    long_description=open(os.path.join(os.path.dirname(__file__), 'README.txt')).read(),
    author='Oyvind Saltvik',
    author_email='*****@*****.**',
    url='http://github.com/fivethreeo/django-slickgrid.git',
    packages=find_packages(),
    classifiers = CLASSIFIERS,
    test_suite = "slickgrid.test.run_tests.run_tests",
    include_package_data=True,
    zip_safe=False,
    install_requires=[],
)
コード例 #2
0
ファイル: conf.py プロジェクト: pombredanne/django-slickgrid
# General information about the project.
project = u'django-slickgrid'
copyright = u'2011, Oyvind 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 slickgrid

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