-
Notifications
You must be signed in to change notification settings - Fork 216
/
pyproject.toml
49 lines (43 loc) · 1.2 KB
/
pyproject.toml
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
[tool.poetry]
name = "jaclang"
version = "0.7.27"
description = "Jac is a unique and powerful programming language that runs on top of Python, offering an unprecedented level of intelligence and intuitive understanding."
authors = ["Jason Mars <[email protected]>"]
maintainers = ["Jason Mars <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = [
"jac",
"jaclang",
"jaseci",
"python",
"programming-language",
"machine-learning",
"artificial-intelligence",
]
repository = "https://github.com/Jaseci-Labs/jaclang"
homepage = "https://jaseci.org"
documentation = "https://jac-lang.org"
[tool.poetry.dependencies]
python = "^3.11.0"
# Below are vendored in using poetry export and pip download
# lark = "^1.1.9"
# mypy = "^1.10.0"
# pluggy = "^1.5.0"
# pygls = "^1.3.1"
[tool.poetry.scripts]
jac = "jaclang.cli.cli:start_cli"
[tool.poetry.extras]
llm = ["mtllm"]
streamlit = ["jaclang-streamlit"]
all = ["mtllm", "jaclang-streamlit"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
pytest-xdist = "^3.6.1"
pytest-cov = "^5.0.0"
pre-commit = "^3.7.1"
[tool.mypy]
mypy_path = ["stubs"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"