This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
121 lines (110 loc) · 2.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
with open("README.md") as readme_file:
readme = readme_file.read()
test_requirements = [
"codecov",
"flake8",
"black",
"pytest",
"pytest-cov",
"pytest-raises",
]
setup_requirements = [
"pytest-runner",
]
dev_requirements = [
"black==19.10b0",
"bumpversion>=0.5.3",
"coverage>=5.0a4",
"flake8>=3.7.7",
"ipython>=7.5.0",
"m2r>=0.2.1",
"pytest>=4.3.0",
"pytest-cov==2.6.1",
"pytest-raises>=0.10",
"pytest-runner>=4.4",
"Sphinx>=2.0.0b1,<3",
"sphinx_rtd_theme>=0.4.3",
"tox>=3.5.2",
"twine>=1.13.0",
"wheel>=0.33.1",
]
interactive_requirements = [
"altair",
"jupyterlab",
"matplotlib",
]
requirements = [
"aicsimageio[all]>=4.1.0",
"matplotlib>=3.1.1",
"numpy>=1.16.4",
"Pillow>=5.2.0",
"PyMCubes",
"scikit-image>=0.15.0",
"scikit-learn",
"scikit-fmm>=2021.7.8",
"scipy>=1.3.0",
"vtk",
"aics_dask_utils",
"ome-zarr",
"universal_pathlib==0.0.19",
]
extra_requirements = {
"test": test_requirements,
"setup": setup_requirements,
"dev": dev_requirements,
"interactive": interactive_requirements,
"all": [
*requirements,
*test_requirements,
*setup_requirements,
*dev_requirements,
*interactive_requirements
]
}
setup(
author="AICS",
author_email="!AICS_SW@alleninstitute.org",
classifiers=[
"Development Status :: 4 - Beta",
"License :: Free for non-commercial use",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
description=(
"A generalized scientific image processing module from the Allen Institute for "
"Cell Science."
),
entry_points={
"console_scripts": [
"make_thumbnail=aicsimageprocessing.bin.make_thumbnail:main",
"make_atlas=aicsimageprocessing.bin.make_atlas:main",
],
},
install_requires=requirements,
license="Allen Institute Software License",
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="aicsimageprocessing",
name="aicsimageprocessing",
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*"]),
python_requires=">=3.7",
setup_requires=setup_requirements,
test_suite="aicsimageprocessing/tests",
tests_require=test_requirements,
extras_require=extra_requirements,
url="https://github.com/AllenCellModeling/aicsimageprocessing",
# Do not edit this string manually, always use bumpversion
# Details in CONTRIBUTING.rst
version="0.8.3",
zip_safe=False,
)