-
Notifications
You must be signed in to change notification settings - Fork 88
/
pyproject.toml
76 lines (70 loc) · 2.06 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
[project]
name = "msprime"
authors = [
{name = "Tskit Developers", email = "[email protected]"},
]
description = "Simulate genealogical trees and genomic sequence data using population genetic models"
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",
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
keywords = [
"coalescent simulation",
"population genetics",
"ms",
"tree sequence",
"tskit"
]
dependencies = [
"numpy>=1.23.5",
"newick>=1.3.0",
"tskit>=0.5.2",
"demes>=0.2"
]
dynamic = ["version"]
[project.urls]
Homepage = "https://tskit.dev/msprime"
Documentation = "https://tskit.dev/msprime/docs/stable"
Changelog = "https://tskit.dev/msprime/docs/stable/CHANGELOG.html"
"Bug Tracker" = "https://github.com/tskit-dev/msprime/issues"
"Source Code" = "https://github.com/tskit-dev/msprime/"
[project.scripts]
mspms = "msprime.cli:mspms_main"
msp = "msprime.cli:msp_main"
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm",
"wheel",
"numpy>=2"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["msprime"]
include-package-data = true
[tool.setuptools_scm]
write_to = "msprime/_version.py"
[tool.pytest.ini_options]
addopts = "-n 4"
testpaths = ["tests"]
filterwarnings = [
"ignore:.*usage of `cmp`.*:DeprecationWarning:demes"
]