-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
executable file
·55 lines (49 loc) · 1.71 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
import os
from setuptools import find_packages, setup
def read_requirements(path):
with open(path, "r") as f:
return [line.strip() for line in f if not line.isspace()]
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setup(
name="spateo-release",
version="1.1.0",
python_requires=">=3.7",
install_requires=read_requirements("requirements.txt"),
extras_require={
"dev": read_requirements("dev-requirements.txt"),
"docs": read_requirements(os.path.join("docs", "requirements.txt")),
"3d": read_requirements("3d-requirements.txt"),
},
packages=find_packages(exclude=("tests", "docs")),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Processing",
],
author="Xiaojie Qiu",
author_email="[email protected]",
description="Spateo: multidimensional spatiotemporal modeling of single-cell spatial transcriptomics",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
url="https://github.com/aristoteleo/spateo-release",
keywords=[
"spatial-transcriptomics",
"stereo-seq",
"Visium",
"seqFish",
"MERFISH",
"slide-seq",
"DBiT-seq",
"HDST-seq",
"osmFISH",
"spatiotemporal",
],
)