adding all of botlist, initial add
[botlist.git] / botlistprojects / botbert / lib / python / pyparsing / setup.py
blob20ca04b044c5b2ff07668c50dcff01f50e081a8f
1 #!/usr/bin/env python
3 """Setup script for the pyparsing module distribution."""
4 from distutils.core import setup
6 from pyparsing import __version__
8 setup(# Distribution meta-data
9 name = "pyparsing",
10 version = __version__,
11 description = "Python parsing module",
12 author = "Paul McGuire",
13 author_email = "ptmcg@users.sourceforge.net",
14 url = "http://pyparsing.wikispaces.com/",
15 download_url = "http://sourceforge.net/project/showfiles.php?group_id=97203",
16 license = "MIT License",
17 py_modules = ["pyparsing"],
18 classifiers=[
19 'Development Status :: 5 - Production/Stable',
20 'Intended Audience :: Developers',
21 'Intended Audience :: Information Technology',
22 'License :: OSI Approved :: MIT License',
23 'Operating System :: OS Independent',
24 'Programming Language :: Python',