-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (40 loc) · 988 Bytes
/
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
[tool.poetry]
name = "np-clinical-trial"
version = "0.0.1"
description = ""
authors = []
include = ["pyproject.toml"]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
scipy = "^1.8.0"
numpy = "1.23.4"
ipython = "^8.17.2"
ipykernel = "^6.26.0"
s3fs = "^2023.10.0"
awswrangler = "^3.4.2"
pyarrow = "^14.0.1"
matplotlib-venn = "^0.11.9"
openai = "^1.3.8"
scikit-learn = "^1.3.2"
rdkit = "^2023.9.5"
seaborn = "0.12.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
ipykernel = "^6.25.1"
black = "^24.3.0"
ruff = "^0.0.286"
[tool.poetry.group.viz]
optional = true
[tool.poetry.group.viz.dependencies]
plotly = "^5.15.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
[tool.poetry.scripts]
manifold-of-life = "np-clinical-trials.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"e2e: marks tests that run against AWS (deselect with '-m \"not e2e\"')",
]