You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB
Python

2 years ago
from distutils.core import setup
_version = '2.15.2'
setup(
name='pyPEG2',
version=_version,
author='Volker Birk',
author_email='vb@dingens.org',
packages=['pypeg2', 'pypeg2.test'],
url='http://fdik.org/pyPEG2',
download_url='http://fdik.org/pyPEG2/pyPEG2-' + _version + '.tar.gz',
license='LICENSE.txt',
description='An intrinsic PEG Parser-Interpreter for Python',
long_description=open('README.txt').read(),
requires=['lxml',],
provides=['pyPEG2 (' + _version + ')',],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)