a6b3cb5a3e52

lolsetup.py
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Mon, 23 Jan 2012 19:48:39 -0500
parents e0dd03f99f3b
children b548eb6bb9a2
branches/tags (none)
files setup.py

Changes

--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Mon Jan 23 19:48:39 2012 -0500
@@ -0,0 +1,19 @@
+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'
+    ],
+)