2
2
requires = [" setuptools>=61.0" , " wheel" ]
3
3
build-backend = " setuptools.build_meta"
4
4
5
+ [tool .setuptools ]
6
+ py-modules = [" cedarscript_ast_parser" ]
7
+
5
8
[project ]
6
- name = " cedarscript_ast_parser "
7
- version = " 0.1.2 "
9
+ name = " cedarscript-ast-parser "
10
+ dynamic = [ " version " ]
8
11
description = " A library for parsing and interpreting CEDARScript, a SQL-like language for code analysis and transformations"
9
12
readme = " README.md"
10
- authors = [{ name = " Elifarley" , email = " elifarley@example .com" }]
13
+ authors = [{ name = " Elifarley" , email = " cedarscript@orgecc .com" }]
11
14
license = { file = " LICENSE" }
12
15
classifiers = [
13
16
" Programming Language :: Python :: 3" ,
@@ -22,15 +25,15 @@ classifiers = [
22
25
]
23
26
keywords = [" parser" , " ast" , " cedarscript" , " code-editing" , " refactoring" , " code-analysis" , " sql-like" , " ai-assisted-development" ]
24
27
dependencies = [
25
- " cedarscript_grammar >=0.0.3 " ,
28
+ " cedarscript-grammar >=0.0.7 " ,
26
29
]
27
30
requires-python = " >=3.12"
28
31
29
32
[project .urls ]
30
- Homepage = " https://github.com/CEDARScript/cedarscript-ast-parser"
31
- Documentation = " https://github.com/CEDARScript/cedarscript-ast-parser#readme"
32
- Repository = " https://github.com/CEDARScript/cedarscript-ast-parser.git"
33
- "Bug Tracker" = " https://github.com/CEDARScript/cedarscript-ast-parser/issues"
33
+ Homepage = " https://github.com/CEDARScript/cedarscript-ast-parser-python "
34
+ Documentation = " https://github.com/CEDARScript/cedarscript-ast-parser-python #readme"
35
+ Repository = " https://github.com/CEDARScript/cedarscript-ast-parser-python .git"
36
+ "Bug Tracker" = " https://github.com/CEDARScript/cedarscript-ast-parser-python /issues"
34
37
35
38
[project .optional-dependencies ]
36
39
dev = [
@@ -44,13 +47,7 @@ dev = [
44
47
version = {attr = " cedarscript_ast_parser.__version__" }
45
48
46
49
[tool .setuptools .packages .find ]
47
- where = [" src " ]
50
+ where = [" . " ]
48
51
include = [" cedarscript_ast_parser*" ]
49
52
exclude = [" cedarscript_ast_parser.tests*" ]
50
53
namespaces = false
51
-
52
- [tool .setuptools .package-data ]
53
- cedarscript_ast_parser = [" *.so" , " *.dylib" , " *.dll" ]
54
-
55
- [tool .setuptools ]
56
- include-package-data = true
0 commit comments