-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.3 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pdm.build]
includes = ["headjack"]
[project]
name = "headjack"
dynamic = ["version"]
description = ""
authors = [
{name = "circargs", email = "[email protected]"},
{name = "Nick Ouellet", email = "[email protected]"},
]
dependencies = [
"lmql @ git+https://github.com/KnowledgeForge/lmql.git@tiktoken",
"plotly==5.14.1",
"chromadb==0.3.21",
"fastapi>=0.71.0",
"sqlmodel>=0.0.8",
"tiktoken>=0.4.0",
"sentence_transformers>=2.2.0",
]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = {text = "Aache 2.0"}
[project.scripts]
headjack = "headjack.api.app:cli"
[tool.pdm.dev-dependencies]
dev = [
"cachelib>=0.9.0",
"pytest==7.2.2",
"pytest_mock>=3.0.0",
"pre-commit==3.2.1",
"coverage<8.0.0,>=7.2.3",
"httpx>=0.24.0",
]
[project.optional-dependencies]
uvicorn = [
"uvicorn[standard]>=0.21.1",
]
[project.urls]
repository = "https://github.com/KnowledgeForge/headjack"
[tool.hatch.version]
path = "headjack/__about__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.black]
line-length = 130
[tool.flake8]
max-line-length = 130
exclude = "demo.py"
ignore = [
"E501",
"W503"
]
[tool.isort]
profile = "black"
line_length = 130
skip_gitignore = true