-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.14 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
55
56
57
58
59
60
61
62
63
64
[project]
name = "sc2ts"
description = "Infer ARGs for SARS-Cov2 in tskit format"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Jerome Kelleher", email = "[email protected]"},
]
requires-python = ">=3.9"
dependencies = [
# "tsinfer==0.3.3", # https://github.com/jeromekelleher/sc2ts/issues/201
# FIXME
"tsinfer @ git+https://github.com/jeromekelleher/tsinfer.git@experimental-hmm",
"tskit>=0.6.0",
"pyfaidx",
"tszip",
"pandas",
"numba",
"tqdm",
"scipy",
"click",
"tomli",
"zarr<2.18",
"humanize",
"resource",
"biotite",
]
dynamic = ["version"]
[project.scripts]
sc2ts = "sc2ts.cli:cli"
[project.optional-dependencies]
dev = [
"msprime",
"sgkit",
"pytest",
"pytest-coverage",
"tomli-w",
]
analysis = [
"matplotlib",
"scikit-learn",
"IPython",
"networkx",
]
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["sc2ts"]
[tool.setuptools_scm]
write_to = "sc2ts/_version.py"
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--cov=sc2ts --cov-report term-missing"