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.
0 parents commit f22ba0dCopy full SHA for f22ba0d
src/setup.py
@@ -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