-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (28 loc) · 1.23 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
import runpy
from setuptools import setup, find_packages
version = runpy.run_path("mobie/__version__.py")["__version__"]
setup(
name="mobie",
packages=find_packages(exclude=["test"]),
version=version,
author="Constantin Pape",
url="https://github.com/platybrowser/mobie-utils-python",
license="MIT",
entry_points={
"console_scripts": [
"mobie.add_image = mobie.image_data:main",
"mobie.add_registered_source = mobie.registration:main",
"mobie.add_remote_metadata = mobie.metadata.remote_metadata:main",
"mobie.add_segmentation = mobie.segmentation:main",
"mobie.add_spots = mobie.spots:main",
"mobie.add_traces = mobie.traces:main",
"mobie.add_open_organelle_dataset = mobie.open_organelle:main",
"mobie.merge_view_file = mobie.view_utils:main",
"mobie.migrate_dataset = mobie.migration.migrate_dataset:main",
"mobie.migrate_project = mobie.migration.migrate_project:main",
"mobie.validate_dataset = mobie.validation.dataset:main",
"mobie.validate_project = mobie.validation.project:main",
"mobie.validate_views = mobie.validation.views:main",
]
},
)