Skip to content

Commit e68f435

Browse files
committed
feat: add setup.py configuration
1 parent 0b46b1a commit e68f435

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/setup.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='cedarscript_ast_parser',
5+
version='0.1.0',
6+
packages=find_packages(where='src'),
7+
package_dir={'': 'src'},
8+
package_data={
9+
'cedarscript_ast_parser': ['../vendor/libtree-sitter-cedar.*'],
10+
},
11+
include_package_data=True,
12+
install_requires=[
13+
'tree-sitter>=0.20.1',
14+
],
15+
)

0 commit comments

Comments
 (0)