Skip to content

Commit

Permalink
core: switch version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alploskov committed Aug 7, 2022
1 parent 16dcb10 commit 0ee977f
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "kithon"
readme = "README.md"
version = "0.3.0"
description = "transpiler python into other language"
version = "0.4.0"
description = "transpiler python into other languages"
authors = ["Aleksey Ploskov"]
license = "MIT"
repository = "https://github.com/alploskov/kithon"
Expand All @@ -12,7 +12,9 @@ packages = [
]
include = [
"translators/python/*",

"translators/python/libs/*",
"translators/python/objects/*",

"translators/js/*",
"translators/js/libs/*",
"translators/js/objects/*",
Expand All @@ -28,14 +30,21 @@ Jinja2 = ">=2.11.2,<4.0.0"
PyYaml = ">=5.4.0"
typer = "^0.4.0"

hy = {path = "deps/hy-1.0a4-py3-none-any.whl", optional = true}
hy = "<2.0"
coconut = {version = "^1.6.0", optional = true}

pexpect = {version = "^4.8.0", optional = true}
ptpython = {version = "^3.0.20", optional = true}

watchdog = {version = "^2.1.7", optional = true}

packed = "^0.2"
mkdocs = {version = ">=1.1.2,<2.0.0", optional = true}
mkdocs-material = {version = ">=8.1.4,<9.0.0", optional = true}
mdx-include = {version = ">=1.4.1,<2.0.0", optional = true}

[tool.poetry.dev-dependencies]
hy = {path = "deps/hy-1.0a4-py3-none-any.whl", optional = true}
packed = {path = "deps/packed-0.2.1-py3-none-any.whl", optional = true}

[tool.poetry.scripts]
Expand All @@ -46,6 +55,18 @@ add-langs = ["coconut", "hy"]
repl = ["pexpect", "ptpython"]
watch = ["watchdog"]
pyx = ["packed"]
all = [
"packed", "watchdog",
"coconut", "hy",
"pexpect", "ptpython"
]
doc = [
"mkdocs",
"mkdocs-material",
"mdx-include"
]



[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 0ee977f

Please sign in to comment.