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

setup(name="phstuff",
      version="0.0.10", # Remember to update version and download
                        # information in README.md too!
      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"])