-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (62 loc) · 1.82 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kmds"
version = "0.4.2"
description = "This is a package that helps data scientists and data analysts to capture notes while they work through data science tasks. The captured tasks can then be searched and analyzed."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "Apache 2.0" }
authors = [
{ name = "Rajiv Sambasivan", email = "rajiv.sambasivan@r2-ds.com" },
]
dependencies = [
"owlready2>=0.46,<0.50",
"rdflib>=7.5.0,<8",
"PyYAML>=6.0.1,<7",
"chromadb>=0.6,<0.7",
"sentence-transformers>=3.0,<4",
"pydantic>=2.0,<3",
"spacy>=3.7,<4",
]
[project.scripts]
kmds-summary-log = "kmds.cli.summary_ingest:main"
kmds-exec-summary = "kmds.cli.executive_summary:main"
kmds-search = "kmds.cli.semantic_search:main"
kmds-ask = "kmds.cli.search_orchestrator:main"
kmds-observe = "kmds.cli.natural_language_observation:main"
[dependency-groups]
dev = [
"boxsdk>=10.3.0",
"flask>=3.1.2",
"google-genai>=1.60.0",
"importlib-resources>=6.5.2",
"ipython>=9.9.0",
"jupyter>=1.1.1",
"jupyter-ai[all]>=2.31.7",
"jupyterlab>=4.5.3",
"langchain-google-vertexai>=2.1.2",
"minio>=7.2.20",
"notebook>=7.5.3",
"openml>=0.15.1",
"plotly>=6.5.2",
"prefect>=3.6.13",
"pytest>=9.0.2",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.2.1",
"scikit-learn>=1.8.0",
"sphinx>=9.1.0",
"sphinx-rtd-theme>=3.1.0",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::pydantic.warnings.PydanticDeprecatedSince211:chromadb",
]
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"kmds" = ["**/*.csv", "**/*.parquet", "**/*.xml", "**/*.txt"]