-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (25 loc) · 1016 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
version = '0.1.0dev'
setup(name = 'Parson',
version = version,
author = 'Darius Bacon',
author_email = '[email protected]',
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',
)