-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
30 lines (29 loc) · 939 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
28
29
30
from setuptools import setup
setup(
name='plyj',
version='0.2-dev',
author='Werner Hahn',
author_email='werner_hahn@gmx.com',
packages=['plyj'],
url='http://github.com/musiKk/plyj',
license='COPYING',
description='A Java parser written in Python using PLY. ',
long_description=open('README.md').read(),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing'
],
install_requires=[
"ply >= 3.4",
],
test_suite='test'
)