-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.01 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.01 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
from setuptools import setup, find_packages
from os import path
# Copy readme to long description
this_dir = path.abspath(path.dirname(__file__))
with open(path.join(this_dir, "README.md")) as f:
long_description = f.read()
# always required packages
required_pkgs = ['numpy',
'scipy',
'matplotlib',
'datetime',
'sympy',
'tqdm',
'dask',
'scikit-image',
'zarr',
'ndtiff',
'localize_psf @ git+https://git@github.com/qi2lab/localize-psf@master#egg=localize_psf'
]
extras = None
setup(
name='SPIM_model',
version='0.1.0',
description="Python package for simulating SPIM excitation light sheet",
long_description=long_description,
author='qi2lab, Steven J Sheppard, Peter Brown',
packages=find_packages(include=['model_tools']),
python_requires='>=3.10',
install_requires=required_pkgs
)