forked from microsoft/monitors4codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 1.32 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
[tool.poetry]
name = "monitors4codegen"
version = "0.1.0"
urls = { "homepage" = "https://github.com/microsoft/monitors4codegen" }
description = "Code for running Monitor-Guided Decoding (https://github.com/microsoft/monitors4codegen) including multilspy: A language-agnostic LSP client in Python, with a library interface. Intended to be used to build applications around language servers. Currently multilspy supports language servers for Python, Rust, Java and C#."
authors = ["Lakshya A Agrawal <t-lakagrawal@microsoft.com>"]
readme = "README.md"
license = "MIT"
packages = [{ include = "monitors4codegen", from = "src" }]
classifiers = [
"Topic :: Software Development",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: C#",
"Programming Language :: Java",
"Programming Language :: Python",
"Programming Language :: Rust",
]
[tool.poetry.dependencies]
python = "^3.12"
pydantic = "*"
code-tokenize = "*"
code-ast = "*"
openai = "*"
torch = "*"
transformers = "*"
tiktoken = "*"
pygtrie = "*"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.4"
ruff-lsp = "^0.0.53"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"