desihub / QuasarNP

Pure Numpy implementation of QuasarNet
MIT License
0 stars 0 forks source link

setup does not define any package #1

Closed dkirkby closed 3 years ago

dkirkby commented 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,
)
dylanagreen commented 3 years ago

Fixed in 41ea01d1d9f028