-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
64 lines (61 loc) · 1.66 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
[metadata]
name = tsdate
author = Tskit Developers
author_email = admin@tskit.dev
license = MIT
description = Infer node ages from a tree sequence topology.
long_description = file: README.md
long_description_content_type = text/markdown
url = http://pypi.python.org/pypi/tsdate
project_urls =
Documentation = https://tskit.dev/tsdate/docs/
Changelog = https://github.com/tskit-dev/tsdate/blob/main/CHANGELOG.rst
Bug Tracker = https://github.com/tskit-dev/tsdate/issues
GitHub = https://github.com/tskit-dev/tsdate
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
inference
dating
tsdate
platforms =
POSIX
Windows
MacOS X
[options]
packages = tsdate
python_requires = >=3.8
include_package_data = True
install_requires =
numpy
tskit>=0.5.8
scipy>=1.13.0
numba>=0.58.1
mpmath
tqdm
appdirs
[options.entry_points]
console_scripts =
tsdate=tsdate.__main__:main
[tool:pytest]
testpaths =
tests