-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.06 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.06 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
from setuptools import Command, find_packages, setup
__lib_name__ = "MacSGP"
__lib_version__ = "0.1"
__description__ = "MacSGP is a scalable statistical and computational approach for MApping Cell-type-specific Spatial Gene Programs (SGPs) in spatial transcriptomic (ST) data."
__url__ = "https://github.com/YangLabHKUST/MacSGP"
__author__ = "Yeqin Zeng"
__author_email__ = "yzengbj@connect.ust.hk"
setup(
name = __lib_name__,
version = __lib_version__,
description = __description__,
url = __url__,
author = __author__,
author_email = __author_email__,
zip_safe = False,
include_package_data = True,
# long_description=open("README.md").read(),
# long_description_content_type="text/markdown",
license="MIT",
license_files=("LICENSE",),
packages=find_packages(),
install_requires=[
"anndata==0.11.3",
"matplotlib==3.10.1",
"numpy==1.26.4",
"pandas==2.2.3",
"scanpy==1.11.0",
"scipy==1.15.2",
"torch==2.5.1",
"torch-geometric==2.6.1",
"tqdm==4.67.1",
],
)