forked from WyssCenter/pAPRica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·42 lines (40 loc) · 1.2 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
from setuptools import setup, find_packages
LONG_DESCR = open('readme.md').read()
LICENSE = open('license.txt', encoding='utf8').read()
setup(
name='paprica',
version='0.0.1',
setup_requires='setuptools',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'pyapr',
'tqdm',
'pandas',
'scikit-image',
'scikit-learn',
'opencv-contrib-python-headless',
'dill',
'matplotlib',
'napari',
'allensdk',
'sparse',
'brainreg',
'joblib',
'pytest'
],
description='APR-based image processing pipeline for microscopy data',
long_description=LONG_DESCR,
long_description_content_type='text/markdown',
url='https://github.com/WyssCenter/APR-pipelines',
author='Jules Scholler, Joel Jonsson',
author_email='jules.scholler@wysscenter.ch, jonsson@mpi-cbg.de',
license=LICENSE,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3'
],
keywords='APR, adaptive, image, representation, processing, pipeline, registration, segmentation, stitching',
)