forked from morphocut/morphocut
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
64 lines (61 loc) · 1.83 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import find_packages, setup
import versioneer
with open("README.rst", "r") as fp:
LONG_DESCRIPTION = fp.read()
setup(
name="morphocut",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Simon-Martin Schroeder",
author_email="[email protected]",
description="Image processing pipeline",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
url="https://github.com/morphocut/morphocut",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"numpy",
"scikit-image>=0.19",
"pandas",
"tqdm",
"scipy",
"deprecated",
],
python_requires=">=3.9",
extras_require={
"tests": [
# Pytest
"pytest",
"pytest-cov",
"timer-cm",
# Coverage
"codecov",
# Optional dependencies
"parse",
"matplotlib", # For FontManager in scalebar
"h5py",
],
"docs": [
"sphinx~=7.3",
"sphinx_rtd_theme",
"sphinxcontrib-programoutput",
"sphinx-autodoc-typehints>=1.10.0",
# See https://github.com/morphocut/morphocut/issues/89
"Jinja2<3.1",
],
},
entry_points={},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
],
)