forked from jbohnslav/deepethogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import setuptools
with open("README.md", 'r') as f:
long_description = f.read()
setuptools.setup(
name='deepethogram',
version='0.0.1',
author='Jim Bohnslav',
author_email='[email protected]',
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=['h5py',
'hydra-core<1.0',
'matplotlib',
'numpy',
'opencv-python',
'opencv-transforms',
'pandas',
'scikit-learn',
'scipy',
'tifffile',
'tqdm']
)