-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 738 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup,find_packages
import sys, os
setup(name="lie-conv",
description="Equivariant Convolutions on Lie Groups",
version='0.1',
author='Marc Finzi, Samuel Stanton, Pavel Izmailov',
author_email='maf820@nyu.edu',
license='MIT',
python_requires='>=3.6',
install_requires=['h5py',
'olive-oil-ml @ git+https://github.com/mfinzi/olive-oil-ml',
'torchdiffeq @ git+https://github.com/rtqichen/torchdiffeq'],#
extras_require = {
'GN':['torch-scatter','torch-sparse','torch-cluster','torch-geometric'],
'TBX':['tensorboardX']
},
packages=find_packages(),#["oil",],#find_packages()
long_description=open('README.md').read(),
)