-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (64 loc) · 2.14 KB
/
Copy pathsetup.py
File metadata and controls
68 lines (64 loc) · 2.14 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
67
68
from setuptools import setup, find_packages
version = "0.1.0"
CONSOLE_SCRIPTS = [
'phathom-segmentation=phathom.segmentation:main',
'phathom-score-centroids=phathom.score:main',
'phathom-preprocess=phathom.pipeline.preprocess_cmd:main',
'phathom-rigid-registration=phathom.pipeline.rigid_registration_cmd:main',
'phathom-non-rigid-registration='
'phathom.pipeline.non_rigid_registration_cmd:main',
'phathom-geometric-features=phathom.pipeline.geometric_features_cmd:main',
'phathom-find-neighbors=phathom.pipeline.find_neighbors_cmd:main',
'phathom-filter-matches=phathom.pipeline.filter_matches_cmd:main',
'phathom-fit-nonrigid-transform='
'phathom.pipeline.fit_nonrigid_transform_cmd:main',
'phathom-warp-image=phathom.pipeline.warp_image:main',
'phathom-warp-points=phathom.pipeline.warp_points_cmd:main',
'phathom-pickle-alignment=phathom.pipeline.pickle_alignment_cmd:main',
'phathom-find-corr-neighbors=phathom.pipeline.find_corr_neighbors_cmd:main',
'phathom-detect-blobs=phathom.pipeline.detect_blobs:main'
]
with open("./README.md") as fd:
long_description = fd.read()
setup(
name="phathom",
version=version,
description=
"Phenotypic analysis of brain tissue at single-cell resolution",
long_description=long_description,
install_requires=[
"matplotlib",
"PyMaxflow",
"scipy",
"scikit-image",
"zarr",
"numpy",
"h5py",
"tqdm",
"scikit-learn",
"pandas",
"tifffile",
"lap",
"lapx",
],
author="Kwanghun Chung Lab",
packages=["phathom",
"phathom.atlas",
"phathom.db",
"phathom.io",
"phathom.pipeline",
"phathom.phenotype",
"phathom.preprocess",
"phathom.registration",
"phathom.segmentation"
],
entry_points={
'console_scripts': CONSOLE_SCRIPTS
},
url="https://github.com/chunglabmit/phathom",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
'Programming Language :: Python :: 3.5',
]
)