-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (50 loc) · 1.68 KB
/
setup.py
File metadata and controls
66 lines (50 loc) · 1.68 KB
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
from setuptools import setup, find_packages
from pathlib import Path
# read README.md for the long project description
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name='Rhapso',
version='0.2.5',
author='ND',
author_email='sean.fite@alleninstitute.org',
description='A python package for aligning and stitching light sheet fluorescence microscopy images',
long_description=long_description,
long_description_content_type='text/markdown',
project_urls={
'Source': 'https://github.com/AllenNeuralDynamics/Rhapso',
'Roadmap': 'https://github.com/AllenNeuralDynamics/Rhapso/issues',
},
packages=find_packages(),
install_requires=[
'pandas',
'dask[array]==2024.12.1',
'zarr==2.18.3',
'scipy==1.13.1',
'scikit-image',
'bioio==1.3.0',
'bioio-tifffile==1.0.0',
'tifffile==2025.1.10',
'dask-image==2024.5.3',
'boto3==1.35.92',
'numcodecs==0.13.1',
'matplotlib==3.10.0',
'memory-profiler==0.61.0',
's3fs==2024.12.0',
'scikit-learn',
'click==8.2.1',
'ray[default]==2.9.1',
'tensorstore',
'xmltodict',
'nptyping',
"setuptools==68.2.2"
],
python_requires='>=3.10',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
],
)