Skip to content

Commit 0b46b1a

Browse files
committed
feat: Rename cedar_parser.py to cedarscript_ast_parser.py and update imports
1 parent 7596e42 commit 0b46b1a

File tree

2 files changed

+0
-31
lines changed

2 files changed

+0
-31
lines changed

src/cedarscript_ast_parser.py

Whitespace-only changes.

src/setup.py

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +0,0 @@
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-
install_requires=[
9-
"tree-sitter>=0.20.1",
10-
],
11-
package_data={
12-
"cedarscript_ast_parser": ["*.so", "*.dylib", "*.dll"],
13-
},
14-
include_package_data=True,
15-
author="Elifarley",
16-
author_email="elifarley@example.com",
17-
description="A library for CEDARScript AST parsing",
18-
long_description=open("README.md").read(),
19-
long_description_content_type="text/markdown",
20-
url="https://github.com/CEDARScript/cedarscript-ast-parser",
21-
classifiers=[
22-
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.12",
24-
"License :: OSI Approved :: MIT License",
25-
"Operating System :: OS Independent",
26-
"Intended Audience :: Developers",
27-
"Topic :: Software Development :: Libraries :: Python Modules",
28-
"Topic :: Text Processing :: Linguistic",
29-
],
30-
python_requires='>=3.12',
31-
)

0 commit comments

Comments
 (0)