summaryrefslogtreecommitdiff
path: root/setup.py
blob: c3eca005c430633ebca44885c02e1ed557ee3aee (plain)
1
2
3
4
5
6
7
8
9
10
from setuptools import setup

setup(name="scnn",
      version="0.1",
      description="Convolutional layer for cochains on simplicial complexes",
      author="Gard Spreemann",
      author_email="gard.spreemann@epfl.ch",
      license="GPL-3",
      packages=["scnn"],
      install_requires=["torch", "numpy", "scipy"])