-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 887 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
[tool.poetry]
name = "deepseek-coder"
version = "0.1.0-alpha"
description = "Deepseek Coder running locally in the terminal."
authors = ["Marcos Cannabrava <[email protected]>"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: MacOS X",
"Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.5",
"Topic :: Terminals"
]
[tool.poetry.dependencies]
python = "^3.12"
vllm = "0.6.6.post1"
aider-install = "0.1.2"
click = "^8.1.8"
[tool.poetry.urls]
Homepage = "https://github.com/marcoscannabrava/deepseek-coder"
Issues = "https://github.com/marcoscannabrava/deepseek-coder/issues"
[tool.poetry.scripts]
deepseek-coder = "deepseek_coder.deepseek_coder:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"