-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
74 lines (68 loc) · 1.66 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
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm",
"wheel",
"oldest-supported-numpy"
]
build-backend = "setuptools.build_meta"
[project]
name = "giglib"
authors = [
{ name = "Yan Wong and Duncan Mbuli-Robertson", email = "yan.wong@bdi.ox.ac.uk" },
]
description = "A library to implement the concept of a Genetic Inheritance Graph."
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"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",
"genetic inheritance graph",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"tskit>=0.5.6",
]
dynamic = [
"version",
]
[project.license]
text = "MIT"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
packages = [
"giglib",
]
include-package-data = true
platforms = [
"POSIX",
"Windows",
"MacOS X",
]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.setuptools_scm]
write_to = "giglib/_version.py"