-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 869 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
description="Biomedical Image Segmentation Models (BISM)",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
python_requires='>=3.10',
install_requires=[
'torch>=2.0.0',
'torchvision>=0.13.0',
'bism',
'fastremap',
'zarr',
'tqdm',
'scikit-image',
'yacs',
'tensorboard',
'sphinx',
'furo',
'sphinx-copybutton',
'sphinx-design',
'sphinx-inline-tabs',
'myst-parser',
'myst-nb'
],
entry_points={
'console_scripts': ['bism-train = bism.train.__main__:main',
'bism-eval = bism.eval.__main__:main']
}
)