File size: 981 Bytes
fcb2b04
 
 
 
 
b5998ff
fcb2b04
b5998ff
fcb2b04
7f7972d
b5998ff
fcb2b04
b5998ff
 
 
 
 
 
 
 
7f7972d
fcb2b04
 
 
 
b5998ff
 
7f7972d
b5998ff
fcb2b04
 
b5998ff
 
 
fcb2b04
b5998ff
 
 
fcb2b04
 
7f7972d
b5998ff
fcb2b04
 
b5998ff
fcb2b04
b5998ff
 
 
 
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "stack-2.9"
version = "0.1.0"
description = "AI coding assistant with pattern memory and tool calling"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
    "transformers>=4.40.0",
    "peft>=0.10.0",
    "accelerate>=0.34.0",
    "datasets>=3.0.0",
    "torch>=2.2.0",
    "pyyaml>=6.0",
    "fastapi>=0.115.0",
    "uvicorn[standard]>=0.30.0",
    "pydantic>=2.0.0",
]

[project.optional-dependencies]
dev = [
    "ruff>=0.8.0",
    "black>=24.0.0",
    "mypy>=1.0.0",
    "pytest>=8.0.0",
]

[tool.ruff]
line-length = 100
target-version = "py310"

[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B"]
ignore = ["E501"]

[tool.black]
line-length = 100
target-version = ["py310"]

[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_ignores = true

[tool.pytest.ini_options]
testpaths = ["tests"]