Example #1
0
    'python-dateutil>=1.5',
    'pysolr',
    'django-haystack',
    'django-randomfilenamestorage',
    'django-guardian',
    'South',
    'django-staticfiles>=1.1.2',
    'django-registration==0.8.0-alpha-1',
    'django-olwidget==0.46-custom1',
]
if int(os.getenv('DISABLE_INSTALL_REQUIRES', '0')):
    install_requires = None

setup(
    name='localwiki',
    version=get_version(),
    description="LocalWiki is a tool for collaboration in local communities",
    long_description=open(os.path.join('deb_utils',
                                       'DESCRIPTION.debian')).read(),
    author='Mike Ivanov',
    author_email='*****@*****.**',
    packages=find_packages(),
    package_dir={'sapling': 'sapling'},
    data_files=gen_data_files(('docs', 'share/localwiki/docs')),
    package_data=find_package_data(
        exclude_directories=standard_exclude_directories + ('deb_utils', )),
    install_requires=install_requires,
    dependency_links=[
        'https://bitbucket.org/ubernostrum/django-registration/get/tip.tar.gz#egg=django-registration-0.8.0-alpha-1',
        'https://github.com/philipn/olwidget/tarball/custom_base_layers_fixed#egg=django-olwidget-0.46-custom1',
    ],
Example #2
0
    'django-guardian==1.0.4',
    'South==0.7.4',
    'python-flot-utils==0.2.1',
    'django-staticfiles==1.2.1',
    'django-registration==0.8.0',
    'django-olwidget==0.46-custom1',
    'django-honeypot==0.3.0-custom4',
    'django-tastypie==0.9.12-custom5',
    'django-qsstats-magic==0.7',
]
if int(os.getenv('DISABLE_INSTALL_REQUIRES', '0')):
    install_requires = None

setup(
    name='localwiki',
    version=get_version(),
    description="LocalWiki is a tool for collaboration in local communities",
    long_description=open(os.path.join('install_config','DESCRIPTION_pypi.txt')).read(),
    author='Mike Ivanov',
    author_email='*****@*****.**',
    url='http://localwiki.org',
    packages=find_packages(),
    package_dir={'sapling': 'sapling'},
    data_files=gen_data_files(
        ('docs', 'share/localwiki/docs'),
    ),
    package_data=find_package_data(exclude_directories=standard_exclude_directories + ('deb_utils',) ),
    install_requires=install_requires,
    dependency_links=[
        'https://github.com/philipn/olwidget/tarball/custom_base_layers_fixed#egg=django-olwidget-0.46-custom1',
        'https://github.com/philipn/django-honeypot/tarball/b4991c140849901d2f8842df2c4672813e73381b#egg=django-honeypot-0.3.0-custom4',
Example #3
0
# General information about the project.
project = u'LocalWiki'
copyright = u'2012, LocalWiki team'

# 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.
sys.path.append(os.path.abspath(os.path.join(__file__, '..', '..', '..')))
import sapling

version = "%s.%s" % (sapling.VERSION[0], sapling.VERSION[1])
# The full version, including alpha/beta/rc tags.
release = sapling.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.
exclude_patterns = []
Example #4
0
master_doc = 'index'

# General information about the project.
project = u'LocalWiki'
copyright = u'2012, LocalWiki team'

# 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.
sys.path.append(os.path.abspath(os.path.join(__file__, '..', '..', '..')))
import sapling
version = "%s.%s" % (sapling.VERSION[0], sapling.VERSION[1])
# The full version, including alpha/beta/rc tags.
release = sapling.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.
exclude_patterns = []