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

setup(name='phstuff',
      version='0.0.1',
      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'])