-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.16 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.16 KB
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
28
29
30
from distutils.core import setup
version = '0.1.2dev'
setup(name = 'Peglet',
version = version,
author = 'Darius Bacon',
author_email = 'darius@wry.me',
py_modules = ['peglet'],
url = 'https://github.com/darius/peglet',
description = "Robinson Crusoe's parsing package.",
long_description = open('README.rst').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.5', # XXX haven't tried it
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
],
keywords = 'parse,parser,parsing,peg,packrat,regex,grammar',
)