-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
81 lines (75 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm",
"wheel",
"numpy>=2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "tsinfer/_version.py"
[project]
name = "tsinfer"
dynamic = ["version"]
authors = [
{name = "Tskit Developers", email = "[email protected]"},
]
description = "Infer tree sequences from genetic variation data."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "GNU GPLv3+"}
classifiers = [
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = [
"population genetics",
"tree sequence",
"ancestral recombination graph",
"evolutionary tree",
"inference",
"tsinfer",
]
dependencies = [
"numpy>=1.23.5",
"six",
"tqdm",
"humanize",
"daiquiri",
"tskit>=0.5.3",
"numcodecs>=0.6",
"zarr>=2.2,!=2.11.0,!=2.11.1,!=2.11.2,<3",
"lmdb",
"sortedcontainers",
"attrs>=19.2.0",
"dask[array]",
"numba",
]
[project.urls]
Homepage = "https://tskit.dev/tsinfer"
Documentation = "https://tskit.dev/tsinfer/docs/stable"
Changelog = "https://tskit.dev/tsinfer/docs/stable/CHANGELOG.html"
"Bug Tracker" = "https://github.com/tskit-dev/tsinfer/issues"
"Source Code" = "https://github.com/tskit-dev/tsinfer/"
[project.scripts]
tsinfer = "tsinfer.__main__:main"
[tool.setuptools]
packages = ["tsinfer"]
include-package-data = true
[tool.pytest.ini_options]
testpaths = ["tests"]