-
Notifications
You must be signed in to change notification settings - Fork 87
/
setup.cfg
56 lines (52 loc) · 1.64 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
[metadata]
name = stdpopsim
author = PopSim Consortium
license = GNU GPLv3+
description = A library of population genetic simulation models
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/popsim-consortium/stdpopsim
author_email = popgen_benchmark@lists.uoregon.edu
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
keywords = simulations, selection, recombination map, models
project_urls =
Documentation = https://popsim-consortium.github.io/stdpopsim-docs/stable/index.html
Source Code = https://github.com/popsim-consortium/stdpopsim
Bug Tracker = https://github.com/popsim-consortium/stdpopsim/issues
[options]
packages = stdpopsim
zip_safe = False
include_package_data = True
python_requires = >=3.7
install_requires =
msprime >= 1.0.4
attrs >= 19.1.0
appdirs
humanize
pyslim >= 1.0.4
numpy
setup_requires =
setuptools
setuptools_scm
[options.entry_points]
console_scripts =
stdpopsim = stdpopsim.cli:stdpopsim_main
[flake8]
max-line-length = 89
extend-ignore = E203, W503
[tool:pytest]
addopts = -n 4
testpaths = tests