setup.py @ 6701eb67f909 v0.2.2

Sort chapters properly.
author Steve Losh <steve@stevelosh.com>
date Wed, 10 Jul 2013 20:06:31 -0400
parents 8e1156959046
children c321396887fd
from distutils.core import setup

setup(
    name='d',
    version='0.2.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/*']},
)