Skip to content

Commit

Permalink
distutils configuration for pushing to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
jsamsa committed Nov 30, 2008
1 parent 06a6767 commit 5925226
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env python


from distutils.core import setup


setup(name='textile',
version='2.1.0',
description='This is Textile. A Humane Web Text Generator.',
author='Jason Samsa',
author_email='jsamsa@gmail.com',
url='http://loopcore.com/python-textile/',
py_modules=['textile'],
platforms = ['any'],
license = ['BSD'],
long_description = """Textile is a XHTML generator using a simple markup developed by Dean Allen."""
)

0 comments on commit 5925226

Please sign in to comment.