setup.py @ 4072a819d4fd

Removed BUILD_LOC and SOURCE_LOC globals

Removed the need for global BUILD_LOC and SOURCE_LOC by passing around
source and destination received through d.render_files()
author Mattijs Hoitink <mattijs@monkeyandmachine.com>
date Mon, 06 Feb 2012 16:59:23 +0100
parents 99b9a6d2ba65
children 93fedf467061
from distutils.core import setup

setup(
    name='d',
    version='0.1.2',
    author='Steve Losh',
    author_email='steve@stevelosh.com',
    packages=['d'],
    scripts=['bin/d'],
    url='http://sjl.bitbucket.org/d/',
    license='MIT',
    description="Documentation generation that won't make you tear your hair out.",
    long_description='Read the documentation at http://sjl.bitbucket.org/d/',
    install_requires=[
        'Markdown',
        'pyquery',
        'pygments'
    ],
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
    ],
    package_data={'d': ['resources/*']},
)