Closed dkirkby closed 3 years ago
I think this will do it:
from setuptools import setup, find_packages setup( name='quasarnp', version='0.1.0', description='Numpy Implementation of QuasarNet', url='https://github.com/dylanagreen/QuasarNP', author='Dylan Green', author_email='dylanag@uci.edu', license='MIT', packages=find_packages(), install_requires=['numpy', 'scipy', 'fitsio', 'h5py'], zip_safe=False, )
Fixed in 41ea01d1d9f028
I think this will do it: