forked from adalca/neurite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 861 Bytes
/
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
#!/usr/bin/env python
from setuptools import find_packages, setup
# run setup
setup(
name="neurite",
version="0.2",
license="MIT",
description="Neural Networks Toolbox for Medical Imaging",
url="https://github.com/adalca/neurite",
keywords=["imaging", "cnn"],
packages=find_packages(),
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"packaging",
"six",
"numpy>=1.17",
"scipy",
"tqdm",
"matplotlib",
"scikit-learn",
"nibabel",
"pystrum @ git+https://github.com/ClandininLab/pystrum.git@f8f5c3598eb3af029e0e718279f955085bab3f25",
],
)