-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 848 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
from setuptools import setup, find_packages
install_requires=[
"tree_sitter>=0.19.0"
]
setup(
name = 'tree_sitter_parsers',
version = "0.0.7",
py_modules = ['tree_sitter_parsers'],
description = 'generate the shared libraries of tree-sitter parsers',
author = 'Yijun Yu and Nghi D. Q. Bui',
author_email = 'yijun.yu@huawei.com',
license="MIT",
url = 'https://github.com/yijunyu/tree-sitter-parsers',
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
],
package_dir={"tree_sitter_parsers": "tree_sitter_parsers"},
packages=find_packages(where="."),
install_requires=install_requires,
include_package_data=True,
)