-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 746 Bytes
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
[project]
name = "tsimpute"
description = "Genome-wide genotype imputation using tree sequences"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Shing Hei Zhan", email = "shing.zhan@ndph.ox.ac.uk"},
]
requires-python = ">=3.9"
dependencies = [
"click",
"tskit>=0.5.3",
"msprime==1.3.3",
"zarr<2.18",
"numpy<=1.26.4",
"numba==0.60.0",
]
dynamic = ["version"]
[project.scripts]
bacts = "tsimpute.cli:cli"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-coverage",
]
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["tsimpute"]
[tool.setuptools_scm]
write_to = "tsimpute/_version.py"