#!/usr/bin/env python from setuptools import setup, find_packages from woven import get_version setup(name='woven', version=get_version(), description='A deployment tool for Django built on Fabric', author='Brett Haydon', author_email='*****@*****.**', url='http://github.com/bretth/woven', download_url='http://github.com/bretth/woven/downloads/', package_dir={'woven': 'woven'}, packages=find_packages(), scripts=['bin/woven-admin.py'], include_package_data = True, package_data={'woven': ['templates/woven/*.txt', 'templates/woven/nginx/*.conf', 'templates/woven/apache2/*.conf', 'templates/woven/ssh/sshd_config', 'templates/etc/*', 'templates/*.py', 'templates/distributions_template/*', ]}, classifiers=['Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules',
#source_encoding = 'utf-8' # The master toctree document. master_doc = 'index' # General information about the project. project = u'Woven' copyright = u'2010, Brett Haydon' # 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. from woven import get_version version = get_version() # The full version, including alpha/beta/rc tags. release = 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 documents that shouldn't be included in the build. #unused_docs = []