from setuptools import setup
import pathlib

here = pathlib.Path(__file__).parent.resolve()

# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')

setup(
    name='cppcpyutils',
    version='0.1',
    description=
    'Python functions for image processing from Compact Plants Phenomics Center',
    long_description_content_type='text/markdown',
    url='http://github.com/CougPhenomics/cppcpyutils',
    author='Dominik Schneider',
    author_email='dominik.schneider@wsu.edu',
    license='MIT',
    packages=['cppcpyutils'],
    install_requires=["numpy", "matplotlib", "pandas"],
    zip_safe=False,
    classifiers=package_dir={'': 'src'},
    )
