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

setup(name="phstuff",
      version="0.0.2",
      description="Some persistent homology glue",
      url="https://nonempty.org/software/python-phstuff",
      author="Gard Spreemann",
      author_email="gard.spreemann@epfl.ch",
      license="GPL-3",
      packages=["phstuff"],
      install_requires=["matplotlib", "numpy"])