Diff of /setup.py [000000] .. [79f3c6]

Switch to unified view

a b/setup.py
1
from setuptools import Command, find_packages, setup
2
3
__lib_name__ = "SpatialGlue"
4
__lib_version__ = "1.1.5"
5
__description__ = "Deciphering spatial domains from spatial multi-omics with SpatialGlue"
6
__url__ = "https://github.com/JinmiaoChenLab/SpatialGlue"
7
__author__ = "Yahui Long"
8
__author_email__ = "longyh@immunol.a-star.edu.sg"
9
__license__ = "MIT"
10
__keywords__ = ["Spatial multi-omics", "Cross-omics integration", "Deep learning", "Graph neural networks", "Dual attention"]
11
__requires__ = ["requests",]
12
13
with open("README.rst", "r", encoding="utf-8") as f:
14
    __long_description__ = f.read()
15
16
setup(
17
    name = __lib_name__,
18
    version = __lib_version__,
19
    description = __description__,
20
    url = __url__,
21
    author = __author__,
22
    author_email = __author_email__,
23
    license = __license__,
24
    packages = ["SpatialGlue"],
25
    install_requires = __requires__,
26
    zip_safe = False,
27
    include_package_data = True,
28
    long_description = """Integration of multiple data modalities in a spatially informed manner remains an unmet need for exploiting spatial multi-omics data. Here, we introduce SpatialGlue, a novel graph neural network with dual-attention mechanism, to decipher spatial domains by intra-omics integration of spatial location and omics measurement followed by cross-omics integration. We demonstrate that SpatialGlue can more accurately resolve spatial domains at a higher resolution across different tissue types and technology platforms, to enable biological insights into cross-modality spatial correlations. SpatialGlue is computation resource efficient and can be applied for data from various spatial multi-omics technological platforms, including Spatial-epigenome-transcriptome, Stereo-CITE-seq, SPOTS, and 10x Visium. Next, we will extend SpatialGlue to more platforms, such as 10x Genomics Xenium and Nanostring CosMx. """,
29
    long_description_content_type="text/markdown"
30
)