-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 1.02 KB
/
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
from setuptools import setup
setup(name='TsIniParser',
version='0.6',
description='A parser for TunerStudio INI files',
url='https://github.com/adbancroft/TunerStudioIniParser',
author='adbancroft',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Text Processing',
],
license='LGPL',
packages=['TsIniParser', 'TsIniParser.dataclasses'],
package_dir={'TsIniParser': 'ts_ini_parser'},
package_data={'TsIniParser': ['grammars/*.lark', 'grammars/*.lark.cache']},
install_requires=[
'lark-parser'
],
zip_safe=False)