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

setup(name="phstuff",
      version="0.0.11", # 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"])