-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (61 loc) · 1.74 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
# $ pip install mushroom
name='mushroom',
version='0.0.4',
description='A Python library for clustering and analysis of multi-modal 3D serial section experiments.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dinglab/mushroom',
author='Erik Storrs',
author_email='estorrs@wustl.edu',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords='multiplex imaging codex neighborhood analysis image segmentation visualization mibi codex phenocycler mihc hyperion',
packages=find_packages(),
python_requires='>=3.8',
install_requires=[
'scanpy',
'squidpy',
'seaborn',
'tifffile',
'ome-types',
'imagecodecs>=2022.7.27',
'scikit-image',
'scikit-learn',
'torch',
'torchio',
'torchvision',
'tensorboard',
'tensorboardX',
'lightning',
'vit-pytorch',
'einops',
'wandb',
'timm',
'leidenalg',
'igraph',
'spatialdata==0.1.2',
'pydantic-extra-types',
],
extras_require={
'viz': [
'napari[all]',
],
},
include_package_data=True,
entry_points={
'console_scripts': [
# 'mushroom=mushroom.mushroom:main',
],
},
)