-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.15 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
from setuptools import setup, find_packages
setup(
name="colloidoscope",
version='0.1.1',
author="Abdelwahab Kawafi",
author_email="<[email protected]>",
description='My PhD project to track colloids using confocal and deep learning.',
packages=find_packages(),
include_package_data=True,
package_dir={'colloidoscope': 'colloidoscope'},
package_data={'colloidoscope': ['attention_unet_202302.pt']},
install_requires=[
'numpy',
'torch',
'matplotlib',
'pathlib2',
'pandas',
'seaborn',
'lxml',
'h5py',
'scipy',
'scikit-learn',
'scikit-image',
'tqdm',
'torchio',
'napari[PySide2]',
'trackpy',
'neptune-client',
'ray[tune]',
'perlin-numpy @ git+https://github.com/pvigier/perlin-numpy',
'monai @ git+https://github.com/wahabk/MONAI'
],
keywords=['python', 'colloidoscope'],
)