-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.13 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "kura"
version = "0.4.3"
description = "Kura is a tool for analysing and visualising chat data"
readme = "README.md"
authors = [
{ name = "Ivan Leo", email = "[email protected]" }
]
requires-python = ">=3.9"
dependencies = [
"instructor[google-generativeai]>=1.7.2",
"pandas>=2.2.3",
"rich>=13.9.4",
"scikit-learn>=1.6.0",
"uvicorn>=0.34.0",
"fastapi[standard]>=0.115.6",
"umap-learn>=0.5.7",
"hdbscan>=0.8.40",
"eval-type-backport>=0.2.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
docs = [
"mkdocs-material>=9.5.49",
"mkdocs-minify-plugin>=0.8.0",
"mkdocs-rss-plugin>=1.17.1",
"mkdocstrings>=0.27.0",
"mkdocstrings-python>=1.13.0",
"pymdown-extensions>=10.14",
]
dev = [
"pyright>=1.1.392.post0",
]
[project.scripts]
kura = "kura.cli.cli:app"
[tool.pyright]
include = ["kura"]
exclude = [
"**/node_modules",
"**/__pycache__",
"src/experimental",
"src/typestubs",
"**/tests/**",
]
reportMissingImports = "error"
reportMissingTypeStubs = false
pythonVersion = "3.9"
pythonPlatform = "Linux"