-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
executable file
·59 lines (54 loc) · 1.74 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
#!/usr/bin/env python3
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
"""
import setuptools
from brainstat import __version__ as brainstat_version
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="brainstat",
version=brainstat_version,
author="MNI-MICA Lab and MPI-CNG Lab",
author_email="[email protected], [email protected]",
description="A toolbox for statistical analysis of neuroimaging data",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/MICA-LAB/BrainStat",
packages=setuptools.find_packages(),
license="BSD 3-Clause License",
package_data={
"brainstat": ["data/*"],
},
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3.9",
install_requires=[
"abagen>=0.1",
"brainspace>=0.1.2",
"h5py",
"netneurotools",
"neurosynth",
"nibabel",
"nilearn>=0.7.0",
"nimare",
"numpy>=1.16.5",
"pandas",
"scikit_learn",
"scipy>=1.3.3",
"templateflow",
"trimesh",
],
extras_require={"dev": ["gitpython", "hcp-utils", "mypy", "plotly", "pytest"]},
project_urls={ # Optional
"Documentation": "https://brainstat.readthedocs.io",
"Bug Reports": "https://github.com/MICA-LAB/BrainStat/issues",
"Source": "https://github.com/MICA-LAB/BrainStat/",
},
)