-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.cfg
78 lines (74 loc) · 2.16 KB
/
setup.cfg
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
[metadata]
name = tsinfer
author= Tskit Developers
author_email = [email protected]
license = GNU GPLv3+
description= Infer tree sequences from genetic variation data.
long_description_content_type = text/markdown
long_description = file: README.md
url = https://tskit.dev/tsinfer
project_urls =
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
GitHub = https://github.com/tskit-dev/tsinfer/
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
platforms =
POSIX
Windows
MacOS X
[options]
packages = tsinfer
python_requires = >=3.9
include_package_data = True
install_requires =
numpy>=1.23.5
six
tqdm
humanize
daiquiri
tskit>=0.5.8
numcodecs>=0.6
# issues 965 and 967 at zarr-python prevent usage of 2.11.0 and 2.11.1
zarr>=2.2,!=2.11.0,!=2.11.1,!=2.11.2,<3
lmdb
sortedcontainers
attrs>=19.2.0
dask[array]
numba
[options.entry_points]
console_scripts =
tsinfer = tsinfer.__main__:main
[tool:pytest]
testpaths =
tests
[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
# 3. If your code will not run unchanged on both Python 2 and 3, you will
# need to generate separate wheels for each Python version that you
# support.
universal=0