-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 loc) · 1.27 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
[tool.poetry]
name = "malco"
version = "0.0.1"
description = "Multilingual Analysis of LLMs for Clinical Observations"
authors = ["Harry Caufield <[email protected]>", "Justin Reese <[email protected]>", "Leonardo Chimirri <[email protected]>", "Enock Niyonkuru <[email protected]>"]
readme = "README.md"
packages = [{include = "malco", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
pheval = "^0.3.2"
setuptools = "^69.5.1"
shelved-cache = "^0.3.1"
curategpt = "^0.2.2"
psutil = "^6.1.0"
autopep8 = "^2.3.1"
[tool.poetry.plugins."pheval.plugins"]
template = "malco.runner:MalcoRunner"
[tool.poetry.group.dev.dependencies]
tox = "^4.15.0"
coverage = "^7.5.0"
pytest = "^7.1.2"
pylint = "^2.15.6"
pycodestyle = "^2.10.0"
pytest-cov = "^6.0.0"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.44"
mkdocstrings = {extras = ["python"], version = "^0.27.0"}
ontogpt = {git = "https://github.com/monarch-initiative/ontogpt.git", tag = "v1.0.3"}
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.black]
line-length = 100
target-version = ["py39", "py310"]
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
include_trailing_comma = true
reverse_relative = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"