-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (69 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
87 lines (69 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[tool.poetry]
name = "kithon"
readme = "README.md"
version = "0.6.0.post1"
description = "transpiler python into other languages"
authors = ["Aleksey Ploskov"]
license = "MIT"
repository = "https://github.com/alploskov/kithon"
packages = [
{ include = "kithon" }
]
include = [
"translators/python/*",
"translators/python/libs/*",
"translators/python/objects/*",
"translators/js/*",
"translators/js/libs/*",
"translators/js/objects/*",
"translators/go/*",
"translators/go/libs/*",
"translators/go/objects/*",
"translators/lua/*",
"translators/lua/libs/*",
"translators/lua/objects/*",
"translators/c-like/*.tp"
]
[tool.poetry.dependencies]
python = ">=3.9.0,<3.12"
Jinja2 = ">=2.11.2,<4.0.0"
PyYaml = ">=5.4.0"
typer = "^0.4.0"
hy = {version = "<2.0", optional = true}
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}
pygments = {version = "*", optional = true}
packed = "^0.2"
[tool.poetry.dev-dependencies]
packed = {path = "deps/packed-0.2.1-py3-none-any.whl", optional = true}
[tool.poetry.scripts]
kithon = "kithon.commands:kithon"
[tool.poetry.extras]
add-langs = ["coconut", "hy"]
repl = ["pexpect", "ptpython"]
watch = ["watchdog"]
pyx = ["packed"]
highlight = ["pygments"]
all = [
"packed", "watchdog",
"coconut", "hy",
"pexpect", "ptpython",
"pygments"
]
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
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.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "*"
PyExecJS = "^1.5"
lupa = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"