-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (36 loc) · 1.01 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "LoxLM"
description = "LLM based DICOM to BIDS conversion aid."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
authors = [{ name = "James Randolph", email = "[email protected]" }]
dynamic = ["version"]
dependencies = ["langchain", "langchain_core", "langchain_community", "langchain_openai", "sentence_transformers", "matplotlib", "pydicom","langchain-milvus", "pydantic","nltk"]
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-argparse",
"sphinx-copybutton",
"sphinx_rtd_theme",
"myst-parser",
"rstcheck",
]
[tool.hatch.build.targets.wheel]
packages = ["LoxLM"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[tool.pytest.ini_options]
addopts = "-ra -vv"
[tool.coverage.run]
branch = true
source = ["LoxLM/"]
[tool.codespell]
skip = "./.git,.mypy_cache,env,venv,tests,*bval,*bvec"
[tool.black]
line-length = 100