-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
67 lines (64 loc) · 1.79 KB
/
setup.py
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
import setuptools
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="idconn", # Replace with your own username
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Katie Bottenhorn",
author_email="[email protected]",
description="A Python pipeline for studying individual differences in brain connectivity.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NBCLab/IDConn",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
# dependency handling
install_requires=[
"numpy",
"scipy",
"nilearn",
"scikit-learn",
"pandas",
"nibabel",
"bctpy",
"pybids",
"networkx",
"matplotlib", # necessary until nilearn includes mpl as a dependency
"enlighten",
'pingouin'
],
extras_require={
"doc": [
"m2r",
"mistune<2", # just temporary until m2r addresses this issue
"recommonmark",
"sphinx>=3.5",
"sphinx-argparse",
"sphinx-copybutton",
"sphinx_gallery==0.10.1",
"sphinxcontrib-bibtex",
],
"tests": [
"codecov",
"coverage",
"coveralls",
"flake8-black",
"flake8-docstrings",
"flake8-isort",
"pytest",
"pytest-cov",
],
},
entry_points={
"console_scripts": [
"idconn=idconn.pipeline:_main",
]
},
)