-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.cfg
104 lines (96 loc) · 2.42 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[metadata]
url = https://github.com/neurostuff/PyMARE
license = MIT
author = PyMARE developers
author_email = [email protected]
maintainer = Taylor Salo
maintainer_email = [email protected]
description = PyMARE: Python Meta-Analysis & Regression Engine
description_file = README.md
long_description =
PyMARE: Python Meta-Analysis & Regression Engine
================================================
A Python library for mixed-effects meta-regression (including meta-analysis).
License
=======
`PYMARE` is licensed under the terms of the MIT license. See the file
'LICENSE' for information on the history of this software, terms & conditions
for usage, and a DISCLAIMER OF ALL WARRANTIES.
All trademarks referenced herein are property of their respective holders.
Copyright (c) 2019--, PyMARE developers
long_description_content_type = text/x-rst
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
[options]
python_requires = >= 3.8
install_requires =
numpy>=1.8.0
pandas
scipy<1.13.0 # https://github.com/arviz-devs/arviz/issues/2336
sympy
wrapt
packages = find:
include_package_data = False
[options.extras_require]
doc =
m2r
matplotlib
mistune<2 # just temporary until m2r addresses this issue
numpydoc
pillow
recommonmark
seaborn
sphinx>=3.5
sphinx-argparse
sphinx-copybutton
sphinx_gallery
sphinx_rtd_theme
sphinxcontrib-bibtex
tests =
codecov
coverage
coveralls
flake8
flake8-black
flake8-docstrings
flake8-isort
pytest
pytest-cov
stan =
pystan
arviz
all =
%(doc)s
%(tests)s
%(stan)s
[options.package_data]
* =
tests/data/*
resources/*
resources/datasets/*
effectsize/*.json
[versioneer]
VCS = git
style = pep440
versionfile_source = pymare/_version.py
versionfile_build = pymare/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
exclude=*build/,_version.py
putty-ignore =
*/__init__.py : +F401
per-file-ignores =
*/__init__.py:D401
ignore = E203,E402,E722,W503
docstring-convention = numpy