-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (38 loc) · 1.17 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
from setuptools import setup, find_packages
setup(
name='CryoVesNet',
version='0.5.0',
url='https://github.com/Zuber-group/CryoVesNet',
packages=find_packages(),
license='MIT', # Please confirm or change the license as appropriate
author='Amin Khosrozadeh, Guillaume Witz, Benoît Zuber',
author_email='[email protected]',
description='CryoVesNet: A Dedicated Framework for Synaptic Vesicle Segmentation in Cryo Electron Tomograms',
package_data={'': ['weights/weights.h5']},
include_package_data=True,
install_requires=[
'colorama',
'numpy<2',
'scikit-image',
'scipy',
'jupyter',
'jupyterlab',
'pandas',
'h5py',
'tifffile',
'mrcfile',
'tqdm',
'napari[pyqt5]',
'napari-mrcfile-reader',
'keras==2.9.0',
'tensorflow<2.10'
],
python_requires='>=3.9',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
],
)