File size: 750 Bytes
b9bac12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"]
      )