-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (27 loc) · 879 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
33
"""
Python package with a pytorch implementation of the icosahedral CNNs (Cohen et al., 2019)
Author: David Diaz-Guerra
Date creation: 03/2022
Python Version: 3.8
Pytorch Version: 1.8.1
"""
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='icoCNN',
version='0.9',
install_reqs=["numpy", "scipy", "torch", "einops", "matplotlib"],
extras_require={
"draw3D": ["vpython"]
},
packages=['icoCNN'],
url='https://github.com/DavidDiazGuerra/icoCNN',
license='GNU Affero General Public License v3.0',
author='David Diaz-Guerra',
author_email='ddga@unizar.es',
description='Python package with a pytorch implementation of the icosahedral CNNs (Cohen et al., 2019)',
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'icoCNN': ['rotation_matrices.npy']},
)