forked from brainiak/brainiak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
103 lines (94 loc) · 2.67 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
[metadata]
name = brainiak
description = Brain Imaging Analysis Kit
long_description = file: README.rst
long_description_content_type = text/x-rst
url = http://brainiak.org
author = Princeton Neuroscience Institute and Intel Corporation
author_email = [email protected]
maintainer = Mihai Capota
maintainer_email = [email protected]
license = Apache 2
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Programming Language :: C++
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Medical Science Apps.
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development
Topic :: Utilities
Typing :: Typed
keywords =
neuroscience
algorithm
fMRI
distributed
scalable
project_urls =
Documentation = https://brainiak.org/docs/
Bug Tracker = https://github.com/brainiak/brainiak/issues
Changelog = https://brainiak.org/docs/release_notes.html
Chat = https://gitter.im/brainiak/brainiak
[options]
packages = find:
install_requires =
numpy<=1.23.1
# https://travis-ci.org/brainiak/brainiak/jobs/545838666
mpi4py>=3
nitime
scikit-learn>=0.18
# See https://github.com/scipy/scipy/pull/8082
scipy!=1.0.0
statsmodels
pymanopt<=0.2.5
theano>=1.0.4 # See https://github.com/Theano/Theano/pull/6671
psutil
nibabel
joblib
wheel # See https://github.com/astropy/astropy-helpers/issues/501
pydicom
python_requires = >=3.5
include_package_data = True
zip_safe = False
use_scm_version=True
[options.packages.find]
where = .
[flake8]
max-complexity = 10
extend-ignore =
# Docstrings
D,
E721,
E231
[coverage:run]
source = brainiak
branch = True
concurrency = multiprocessing
parallel = True
[coverage:report]
fail_under = 90
[tool:pytest]
addopts =
-s
--durations=0