setup.py @ 974d8e575d4a

Add "MANIFEST" to .hgignore.
author Steve Losh <steve@stevelosh.com>
date Tue, 31 Jan 2012 13:41:40 -0500
parents a6b3cb5a3e52
children a8d51959358b
from distutils.core import setup

setup(
    name='d',
    version='0.0.1',
    author='Steve Losh',
    author_email='steve@stevelosh.com',
    packages=['d'],
    scripts=['bin/d'],
    url='http://sjl.bitbucket.org/d/',
    license='LICENSE.markdown',
    description="Documentation generation that won't make you tear your hair out.",
    long_description=open('README.markdown').read(),
    install_requires=[
        'Markdown',
        'pyquery',
        'pygments'
    ],
)