-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (33 loc) · 880 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
36
37
38
39
from setuptools import setup
install_requires = [
"jgo>=0.4.0",
]
entry_points = {
"console_scripts": [
"mobie=mobie_cmd:main",
]
}
version = "4.0.3"
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
]
package_urls = {
"Documentation": "https://mobie.github.io/",
}
setup(
name="mobie_cmd",
version=version,
license_files=("LICENSE.txt",),
author="Christian Tischer",
author_email="[email protected]",
maintainer="Christian Tischer",
maintainer_email="[email protected]",
description="Viewer for big multi-modal image data",
url="https://github.com/mobie/mobie-viewer-fiji",
package_urls=package_urls,
packages=["mobie_cmd"],
entry_points=entry_points,
install_requires=install_requires,
classifiers=classifiers,
)