-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (36 loc) · 967 Bytes
/
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
[tool.poetry]
name = "verified-cogen"
version = "0.1.0"
description = "Verify code using LLMs"
authors = ["JetBrains Research"]
readme = "README.md"
[tool.poetry.scripts]
verified-cogen = "verified_cogen.main:main"
incremental_run = "verified_cogen.experiments.incremental_run:main"
[tool.isort]
profile = "black"
src_paths = ["verified_cogen"]
[tool.pyright]
typeCheckingMode = "strict"
pythonVersion = "3.9"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "grazie"
url = "https://packages.jetbrains.team/pypi/p/grazi/jetbrains-ai-platform-public/simple"
priority = "supplemental"
[tool.poetry.dependencies]
python = "^3.9"
grazie-api-gateway-client = "^0.1.3"
appdirs = "^1.4.4"
[tool.poetry.group.dev.dependencies]
isort = "^5.10.1"
ruff = "^0.5.4"
pytest = "^8.3.1"
matplotlib = "^3.9.2"
ipykernel = "^6.29.5"
pyright = "^1.1.381"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"