forked from CellProfiler/python-bioformats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (44 loc) · 1.82 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools
setuptools.setup(
author="Lee Kamentsky",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Java",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion"
],
description="Read and write life sciences file formats",
extras_require={
"test": [
"pytest>=6.1"
]
},
install_requires=[
"boto3>=1.14.23",
"future>=0.18.2",
"python-javabridge~=4.0.3"
],
license="GPL License",
long_description="""Python-bioformats is a Python wrapper for Bio-Formats, a standalone Java library for reading
and writing life sciences image file formats. Bio-Formats is capable of parsing both pixels and metadata for a
large number of formats, as well as writing to several formats. Python-bioformats uses the python-javabridge to
start a Java virtual machine from Python and interact with it. Python-bioformats was developed for and is used by
the cell image analysis software CellProfiler (cellprofiler.org). While we are gratified that others
outside the CellProfiler team find it useful, we maintain python-bioformats essentially for the CellProfiler project
and **cannot currently guarantee support for other users.** Please consider visiting our forum at forum.image.sc for
additional support help.""",
name="python-bioformats",
package_data={
"bioformats": [
"jars/*.jar"
]
},
packages=[
"bioformats"
],
url="http://github.com/CellProfiler/python-bioformats/",
version="4.1.10001"
)