Skip to content

Commit

Permalink
Merge branch 'main' of github.com:tinymanorg/tealish into docs-improv…
Browse files Browse the repository at this point in the history
…ements
  • Loading branch information
gokselcoban committed Nov 21, 2022
2 parents aa9f9dc + 49dbcf1 commit 6229ca5
Show file tree
Hide file tree
Showing 19 changed files with 2,302 additions and 1,713 deletions.
12 changes: 2 additions & 10 deletions README.md
Expand Up @@ -46,17 +46,9 @@ exit(1)
## Compiling

```
tealish examples/minimal_example/counter_prize.tl
tealish compile examples/minimal_example/counter_prize.tl
```
This will produce
[`counter_prize.teal`](examples/minimal_example/build/counter_prize.teal),
[`counter_prize.min.teal`](examples/minimal_example/build/counter_prize.min.teal)
and
[`counter_prize.map.json`](examples/minimal_example/build/counter_prize.map.json)
in the
[`build`](examples/minimal_example/build/)
subdirectory.

This will produce [`counter_prize.teal`](examples/minimal_example/build/counter_prize.teal) in the [`build`](examples/minimal_examplebuild/) subdirectory.

## Editor Support

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -16,7 +16,7 @@
packages=find_packages(),
include_package_data=True,
package_data={"tealish": ["*.tx", "*.json"]},
install_requires=["textX >= 3.0.0"],
install_requires=["textX >= 3.0.0", "click >= 8.1.3", "requests >= 2.0.0"],
python_requires=">=3.7",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
Expand All @@ -33,8 +33,7 @@
],
entry_points={
"console_scripts": [
"tealish = tealish.run:cli",
"tealishfmt = tealish.fmt:cli",
"tealish = tealish.cli:cli",
],
},
)

0 comments on commit 6229ca5

Please sign in to comment.