Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
darius committed Dec 25, 2014
1 parent 7690bf3 commit 6fcff29
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from distutils.core import setup

version = '0.1.0dev'

setup(name = 'Parson',
version = version,
author = 'Darius Bacon',
author_email = 'darius@wry.me',
py_modules = ['parson'],
url = 'https://github.com/darius/parson',
description = "A fancier parsing package.", # XXX
long_description = open('README.md').read(),
license = 'GNU General Public License (GPL)',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
],
keywords = 'parse,parser,parsing,peg,packrat,regex,grammar',
)

0 comments on commit 6fcff29

Please sign in to comment.