from setuptools import setup, find_packages # more info: https://docs.python.org/3/distutils/setupscript.html # https://docs.pytest.org/en/latest/goodpractices.html#choosing-a-test-layout-import-rules setup( name="SDToolBox", packages=(find_packages(exclude=('tests'))), # package_dir={'SDToolBox': 'SDToolBox'}, version='19.1.0', description='', license='LICENSE.txt', long_description=open('README.txt').read(), author='Jose A. A. AntolĂ­nez', author_email='jose.antolinez@deltares.nl', url='https://www.deltares.nl/nl/', download_url='https://repos.deltares.nl/repos/SD_Toolbox', install_requires=[ "netCDF4>=1.2.9", "numpy>=1.12", "pandas>=0.19.2" "scipy>=1.0", "scikit_learn>=0.19.0", "xarray>=0.13.0" ], )