-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.cfg
62 lines (56 loc) · 1.48 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
[metadata]
name = m2g
version = 1.0.0
description = Neuro Data MRI to Graphs Pipeline
long_description = file: README.md
long_description_content_type = text/markdown
author = neurodata
author_email = [email protected]
url = https://github.com/neurodata/m2g
keywords = connectome, mri, pipeline
license = Polyform Noncommercial
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages = find:
include_package_data = True
python_requires = >=3.8, <3.11
install_requires =
awscli==1.29.54
boto3==1.28.4
dipy==1.7.0
fury==0.5.1
graspologic==3.3.0
networkx==3.1
nibabel==5.1.0
nilearn==0.10.0
matplotlib==3.7.1
pybids==0.15.6
regex==2023.12.25
[options.entry_points]
console_scripts =
m2g = m2g.scripts.m2g_bids:main
m2g_dwi_pipeline = m2g.scripts.m2g_dwi_pipeline:main
m2g_cloud = m2g.scripts.m2g_cloud:main
[options.package_data]
templates = *.json
[options.packages.find]
exclude =
tests
[options.extras_require]
dev =
black
ipykernel>=5.1.0
ipython>=7.4.0,!=8.7.0 # https://github.com/spatialaudio/nbsphinx/issues/687#issuecomment-1339271312
isort>=5.9.3
nbsphinx>=0.8.7
numpydoc>=1.1.0
pandoc>=1.1.0
sphinx>=4.2.0
sphinxcontrib-rawfiles>=0.1.1
sphinx-rtd-theme>=1.0.0