-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
29 lines (27 loc) · 887 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="spharmnet",
version="0.1.0",
license="Apache 2.0",
author="Ilwoo Lyu",
author_email="[email protected]",
description="SPHARM-Net: Spherical Harmonics-based Convolutional Neural Network",
url="https://github.com/Shape-Lab/SPHARM-Net",
keywords=["spherical cnn", "equivariant convolution", "cortical parcellation"],
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"numpy>=1.11.3",
"scipy>=1.2.1",
"joblib>=0.14.1",
"tqdm",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
],
)