setup.py @ a6b3cb5a3e52

lolsetup.py
author Steve Losh <steve@stevelosh.com>
date Mon, 23 Jan 2012 19:48:39 -0500
parents (none)
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'
    ],
)