-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 772 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).parent
README = (ROOT / "README.md").read_text(encoding="utf-8") if (ROOT / "README.md").exists() else ""
REQUIREMENTS = (ROOT / "requirements.txt").read_text(encoding="utf-8").splitlines() if (ROOT / "requirements.txt").exists() else []
setup(
name="deepspot2cell",
version="0.1.0",
description="DeepSpot2Cell: virtual single-cell spatial transcriptomics from H&E images",
long_description=README,
long_description_content_type="text/markdown",
author="DeepSpot2Cell Contributors",
packages=find_packages(include=("deepspot2cell", "deepspot2cell.*")),
install_requires=REQUIREMENTS,
python_requires=">=3.9",
include_package_data=True,
)