Spaces:
Runtime error
Runtime error
| from setuptools import setup, find_packages | |
| setup(name='dijkprofile_annotator', | |
| version='0.1.0', | |
| description='Automatically annotate drijkprofile in qDAMEdit format', | |
| long_description=open('README.md').read(), | |
| url='', | |
| author='Jonathan Gerbscheid', | |
| author_email='j.gerbscheid@hetwaterschapshuis.nl', | |
| license='MIT', | |
| package_dir={"dijkprofile_annotator": "dijkprofile_annotator"}, | |
| packages=find_packages(), | |
| zip_safe=False, | |
| install_requires=["joblib", | |
| "matplotlib", | |
| "numpy", | |
| "pillow", | |
| "scikit_learn>=1.0.1", | |
| "seaborn", | |
| "torch>=1.9.0"] | |
| ) | |