|
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