We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f22ba0d commit e77bdeeCopy full SHA for e77bdee
src/setup.py
@@ -1,11 +1,16 @@
1
from setuptools import setup, find_packages
2
+
3
setup(
4
name="cedarscript_ast_parser",
5
version="0.1.0",
- packages=find_packages(),
6
+ packages=find_packages(where="src"),
7
+ package_dir={"": "src"},
8
install_requires=[
- # Add any dependencies here
9
+ "tree-sitter>=0.20.1",
10
],
11
+ package_data={
12
+ "cedarscript_ast_parser": ["*.so", "*.dylib", "*.dll"],
13
+ },
14
author="Elifarley",
15
author_email="elifarley@example.com",
16
description="A library for CEDARScript AST parsing",
@@ -14,8 +19,12 @@
19
url="https://github.com/CEDARScript/cedarscript-ast-parser",
20
classifiers=[
21
"Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.12",
17
23
"License :: OSI Approved :: MIT License",
18
24
"Operating System :: OS Independent",
25
+ "Intended Audience :: Developers",
26
+ "Topic :: Software Development :: Libraries :: Python Modules",
27
+ "Topic :: Text Processing :: Linguistic",
28
29
python_requires='>=3.12',
-)
30
+)
0 commit comments