-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (43 loc) · 1.36 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
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
setup(
# the name must match the folder name 'verysimplemodule'
name="ctfishpy",
version='0.1.6',
author="Abdelwahab Kawafi",
author_email="<[email protected]>",
description='Zebrafish bone segmentation using deep learning.',
# long_description=LONG_DESCRIPTION,
package_dir={'ctfishpy': 'ctfishpy'},
package_data={'ctfishpy': ['otolith_unet_221019.pt', 'jaw_unet_230124.pt']},
packages=find_packages(),
install_requires=[
'numpy>=1.19',
'matplotlib',
'opencv-python-headless',
'pandas',
'matplotlib',
'seaborn',
'pathlib2',
'h5py',
'napari[pyside2]',
'torch',
'monai-weekly',
'torchio',
'albumentations',
'tqdm',
'scipy',
'scikit-image',
'scikit-learn',
'tifffile',
'python-dotenv',
'pytest',
'pydicom',
],
extras_require={
"dev": [
'neptune-client',
'ray[tune]',
],
},
keywords=['python', 'ctfishpy'],
)