-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 987 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="um2bs",
version="2020.10.26",
description="Ultramicroscope2Bigstitcher",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VolkerH/Ultramicroscope2Bigstitcher",
author="Volker Hilsenstein",
author_email="[email protected]",
license="BSD-3",
packages=["um2bs"],
zip_safe=False,
install_requires=[
"numpy",
"scikit-image",
"pandas",
"pyqt5",
"npy2bdv",
"tifffile",
"h5py",
"xmltodict",
],
entry_points="""
[console_scripts]
um2bs_gui=um2bs.um2bs_gui:run
""",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-3 License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)