-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.11 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
[tool.poetry]
name = "citrus"
version = "0.1.0"
description = "CIs and TRans interaction nUmerical Simulator for simulating phenotypes from genotypes"
authors = ["Ross DeVito"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/gymrek-lab/citrus"
homepage = "https://github.com/gymrek-lab/citrus"
documentation = "https://github.com/gymrek-lab/citrus"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
pandas = "^2.2.2"
scipy = "^1.11.4"
shap = "^0.46.0"
hail = "^0.2.132"
tqdm = "^4.66.5"
pydot = "^3.0.1"
scikit-learn = "^1.5.2"
importlib-metadata = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.tests.dependencies]
pytest = ">=6.2.0"
pytest-cov = ">=3.0.0"
[tool.poetry.group.docs.dependencies]
sphinx = ">=3.0.4"
sphinx-rtd-theme = ">=1.0.0"
sphinx-autodoc-typehints = ">=1.12.0"
[tool.poetry.scripts]
citrus = "citrus.cli:citrus"
[tool.pytest.ini_options]
addopts = """
--ignore noxfile.py
"""
[tool.coverage.run]
omit = [
".nox/*",
"noxfile.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
]