-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (54 loc) · 1.52 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
[tool.poetry]
name = "sfkit"
version = "0.0.241" # will be auto-replaced via GitHub Action
authors = ["Simon Mendelsohn <smendels@broadinstitute.org>"]
description = "Some CLI Tools For The Secure Multi-party Genomic Analysis Website"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-poetry = "==2.4.1"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
checksumdir = "^1.2.0"
google-auth = "^2.23.4"
google-cloud-storage = "^2.13.0"
joblib = "^1.3.2"
matplotlib = "^3.10.3"
numpy = "^1.26.1"
pandas = "^2.1.2"
pgenlib = "^0.90.2"
pillow = ">=11.3,<13.0"
PyNaCl = "=1.6.2"
qmplot = "^0.3.2"
requests = { extras = ["socks"], version = "^2.32.4" }
scikit-learn = "^1.7.1"
scipy = "^1.15.3"
setuptools = ">=80.9.0"
tomlkit = "^0.12.2"
tqdm = "^4.66.1"
urllib3 = "^2.6.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.10.1,<27.0.0"
flake8 = "^6.1.0"
pytest = ">=7.4.3,<10.0.0"
pytest-mock = "^3.12.0"
[tool.poetry.group.doc.dependencies]
sphinx-argparse = "^0.4.0"
sphinx-copybutton = "^0.5.2"
sphinx-inline-tabs = "^2023.4.21"
sphinx-rtd-theme = "^1.3.0"
[tool.poetry.scripts]
sfkit = "sfkit.cli:main"
[tool.poetry.urls]
"Website" = "https://sfkit.org/"
"Github" = "https://github.com/hcholab/sfkit"
[build-system]
requires = ["poetry-core>=1.8.1"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
exclude_lines = ["if __name__ == .__main__.:"]
[tool.pytest.ini_options]
pythonpath = [".", "sfkit", "tests"]