-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 764 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 764 Bytes
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
from setuptools import setup, find_packages
print(find_packages())
setup(
name='slide_analysis_nn',
version='1',
packages=find_packages(),
install_requires=['matplotlib',
'werkzeug',
'keras',
'tensorflow',
'opencv-python',
'falcon',
'numpy',
'h5py',
'openslide-python',
'requests',
'pandas',
'scikit-learn',
'tqdm',
],
url='',
license='MIT',
author='vozman',
author_email='vozman@yandex.ru',
description='',
include_package_data=True,
)