Skip to content

Commit b843f45

Browse files
committed
0.0.8
1 parent 5755dd6 commit b843f45

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ ts build --wasm && \
2424
cp -a test target && \
2525
ts test || { playground; exit 1 ;}
2626

27-
rm -f target/libtree-sitter-cedar.* cedarscript_grammar/libtree-sitter-cedar.* && \
27+
rm -f target/libtree-sitter-cedar.* src/cedarscript_grammar/libtree-sitter-cedar.* && \
2828
(cd target && cc -c -I./src src/parser.c && cc -dynamiclib -o libtree-sitter-cedar.dylib parser.o) && \
29-
mv target/libtree-sitter-cedar.dylib cedarscript_grammar/ && \
29+
mv target/libtree-sitter-cedar.dylib src/cedarscript_grammar/ && \
3030
docker build -t tree-sitter-cedar-builder . && \
3131
docker cp $(docker create tree-sitter-cedar-builder):/libtree-sitter-cedar.so \
32-
cedarscript_grammar/libtree-sitter-cedar.so || exit
32+
src/cedarscript_grammar/libtree-sitter-cedar.so || exit
3333

34-
ls -Falk cedarscript_grammar/lib*
35-
du -hs cedarscript_grammar/lib*
34+
ls -Falk src/cedarscript_grammar/lib*
35+
du -hs src/cedarscript_grammar/lib*
3636

3737
playground

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@ classifiers = [
1616
"Intended Audience :: Developers",
1717
"License :: OSI Approved :: MIT License",
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.9",
20-
"Programming Language :: Python :: 3.10",
21-
"Programming Language :: Python :: 3.11",
2219
"Topic :: Software Development :: Compilers",
2320
"Topic :: Text Processing :: Linguistic",
2421
"Typing :: Typed"
2522
]
26-
keywords = ["incremental", "parsing", "tree-sitter", "cedarscript", "shared-library", "dylib", "so", "python-binding"]
27-
requires-python = ">=3.9"
23+
keywords = ["parser", "tree-sitter", "ast", "cedarscript", "code-editing", "refactoring", "code-analysis", "sql-like", "ai-assisted-development", "python-binding"]
24+
requires-python = ">=3.8"
2825
dependencies = [
2926
"tree-sitter~=0.21",
3027
]
3128

3229
[project.urls]
3330
Homepage = "https://github.com/CEDARScript/cedarscript-grammar#readme"
31+
Repository = "https://github.com/CEDARScript/cedarscript-grammar.git"
32+
Documentation = "https://github.com/CEDARScript/cedarscript-grammar#readme"
3433
"Bug Tracker" = "https://github.com/CEDARScript/cedarscript-grammar/issues"
3534

3635
[tool.setuptools]
3736
packages = ["cedarscript_grammar"]
37+
package-dir = {"" = "src"}
3838

3939
[tool.setuptools.dynamic]
4040
version = {attr = "cedarscript_grammar.__version__"}
@@ -52,7 +52,7 @@ profile = "black"
5252
line_length = 100
5353

5454
[tool.mypy]
55-
python_version = "3.9"
55+
python_version = "3.8"
5656
strict = true
5757
warn_return_any = true
5858
warn_unused_configs = true

cedarscript_grammar/__init__.py renamed to src/cedarscript_grammar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from tree_sitter import Language
66

7-
__version__ = "0.0.7"
7+
__version__ = "0.0.8"
88
__all__ = ("language",)
99

1010
_ROOT_DIR = Path(__file__).parent

0 commit comments

Comments
 (0)