Revision ffd7e6bd91f52c7d1dbb166d1fe8793a26c4cb01 authored by Jim Bohnslav on 26 August 2021, 19:28:43 UTC, committed by GitHub on 26 August 2021, 19:28:43 UTC
2 parent s 58f71cd + e02c068
Raw File
setup.py
import setuptools

with open("README.md", 'r') as f:
    long_description = f.read()

setuptools.setup(name='deepethogram',
                 version='0.1.1.post4',
                 author='Jim Bohnslav',
                 author_email='jbohnslav@gmail.com',
                 description='Temporal action detection for biology',
                 long_description=long_description,
                 long_description_content_type='text/markdown',
                 include_package_data=True,
                 packages=setuptools.find_packages(),
                 classifiers=['Programming Language :: Python :: 3', 'Operating System :: OS Independent'],
                 entry_points={'console_scripts': ['deepethogram = deepethogram.gui.main:entry']},
                 python_requires='>=3.6',
                 install_requires=[
                     'chardet<4.0', 'h5py', 'kornia>=0.5', 'matplotlib', 'numpy', 'omegaconf>=2', 'opencv-python',
                     'opencv-transforms', 'pandas', 'PySide2', 'scikit-learn', 'scipy', 'tqdm', 'vidio',
                     'pytorch_lightning<=1.1.8'
                 ])
back to top