Skip to content

Commit a0ec540

Browse files
committed
0.1.6
1 parent cb90ebd commit a0ec540

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

pyproject.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ requires = ["setuptools>=61.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "cedarscript_editor"
7-
version = "0.1.2"
6+
name = "cedarscript-editor"
7+
dynamic = ["version"]
88
description = "A library for executing CEDARScript, a SQL-like language for code analysis and transformations"
99
readme = "README.md"
1010
authors = [{ name = "Elifarley", email = "[email protected]" }]
@@ -23,7 +23,7 @@ classifiers = [
2323
]
2424
keywords = ["cedarscript", "code-editing", "refactoring", "code-analysis", "sql-like", "ai-assisted-development"]
2525
dependencies = [
26-
"cedarscript_ast_parser>=0.1.2",
26+
"cedarscript-ast-parser>=0.1.4",
2727
]
2828
requires-python = ">=3.12"
2929

@@ -46,7 +46,10 @@ dev = [
4646

4747
[tool.setuptools]
4848
package-dir = {"" = "src"}
49-
include-package-data = true
49+
py-modules = ["cedarscript_editor"]
50+
51+
[tool.setuptools.dynamic]
52+
version = {attr = "cedarscript_editor.__version__"}
5053

5154
[tool.setuptools.packages.find]
5255
where = ["src"]

src/cedarscript_editor/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
from .cedarscript_editor_kotlin import KotlinCEDARScriptEditor
33
from .cedarscript_editor_python import PythonCEDARScriptEditor
44

5+
__version__ = "0.1.6"
6+
57
__all__ = ["JavaCEDARScriptEditor", "KotlinCEDARScriptEditor", "PythonCEDARScriptEditor"]

0 commit comments

Comments
 (0)