-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 848 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 848 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
#!/usr/bin/env python
import runpy
from setuptools import find_packages, setup
__version__ = runpy.run_path("patho_sam/__version__.py")["__version__"]
setup(
name='patho_sam',
description='Segment Anything for Histopathology.',
version=__version__,
author='Titus Griebel, Anwai Archit, Constantin Pape',
url='https://github.com/computational-cell-analytics/patho-sam',
packages=find_packages(include=['patho_sam', 'patho_sam.*']),
license="MIT",
entry_points={
"console_scripts": [
"patho_sam.example_data=patho_sam.util:get_example_wsi_data",
"patho_sam.automatic_segmentation=patho_sam.automatic_segmentation:main",
]
}
)