forked from tskit-dev/msprime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (68 loc) · 2.08 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
[metadata]
name = msprime
author = Tskit Developers
author_email = admin@tskit.dev
license = GNU GPLv3+
# NOTE: description *must* be on one line.
description = Simulate genealogical trees and genomic sequence data using population genetic models
long_description_content_type = text/markdown
long_description = file: README.md
url = https://tskit.dev/msprime
project_urls =
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
GitHub = https://github.com/tskit-dev/msprime/
classifiers =
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
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
platforms =
POSIX
Windows
MacOS X
[options]
packages = msprime
python_requires = >=3.7
include_package_data = True
install_requires =
numpy
newick>=1.3.0
tskit>=0.3.5
demes<0.2
setup_requires =
numpy
setuptools
setuptools_scm
[options.entry_points]
console_scripts =
mspms = msprime.cli:mspms_main
msp = msprime.cli:msp_main
[tool:pytest]
addopts = -n 4
testpaths =
tests
# Demes uses a previously-deprecated attrs feature, which as of attrs 21.1.0
# has been undeprecated. An older version of attrs is likely installed though,
# because jupyter-book dependencies pin to attrs<21.
filterwarnings =
ignore:.*usage of `cmp`.*:DeprecationWarning:demes