Skip to content

Commit f22ba0d

Browse files
committed
feat: Add setup.py for cedarscript_ast_parser library
0 parents  commit f22ba0d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from setuptools import setup, find_packages
2+
setup(
3+
name="cedarscript_ast_parser",
4+
version="0.1.0",
5+
packages=find_packages(),
6+
install_requires=[
7+
# Add any dependencies here
8+
],
9+
author="Elifarley",
10+
author_email="elifarley@example.com",
11+
description="A library for CEDARScript AST parsing",
12+
long_description=open("README.md").read(),
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/CEDARScript/cedarscript-ast-parser",
15+
classifiers=[
16+
"Programming Language :: Python :: 3",
17+
"License :: OSI Approved :: MIT License",
18+
"Operating System :: OS Independent",
19+
],
20+
python_requires='>=3.12',
21+
)

0 commit comments

Comments
 (0)