-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.cfg
More file actions
95 lines (90 loc) · 2.07 KB
/
setup.cfg
File metadata and controls
95 lines (90 loc) · 2.07 KB
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
[metadata]
url = https://github.com/neurostuff/PyMARE
license = MIT
author = PyMARE developers
author_email = tsalo006@fiu.edu
maintainer = Taylor Salo
maintainer_email = tsalo006@fiu.edu
description = PyMARE: Python Meta-Analysis & Regression Engine
description_file = README.md
long_description = file: pypi_description.md
long_description_content_type = text/markdown
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,<2.0; python_version == "3.9" and extra == 'stan'
numpy>=1.8.0; python_version != "3.9" or extra != 'stan'
pandas
scipy<1.13; python_version == "3.9" and extra == 'stan'
scipy; python_version != "3.9" or extra != 'stan'
sympy
wrapt
packages = find:
include_package_data = False
[options.extras_require]
doc =
m2r2
matplotlib
mistune
numpydoc
pillow
recommonmark
seaborn
sphinx>=3.5
sphinx-argparse
sphinx-copybutton
sphinx_gallery
sphinx_rtd_theme
sphinxcontrib-bibtex
sphinxcontrib-mermaid
docutils>=0.18.1,<0.21
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