-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 906 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
from setuptools import setup
setup(name='frilouz',
version='0.0.2',
py_modules=['frilouz'],
description='Python AST parser adapter with partial error recovery',
long_description='''
An adaptor for AST parser like `ast.parse` and `gast.parse` which is capable of
recovering from syntax error and provide a list of syntax errors met
during parsing.''',
author='serge-sans-paille',
author_email='[email protected]',
url='https://github.com/serge-sans-paille/frilouz/',
license="BSD-3-Clause",
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
)