forked from scverse/squidpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (75 loc) · 2.64 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
65
66
67
68
69
70
71
72
73
74
75
76
77
from pathlib import Path
from setuptools import setup, find_packages
try:
from squidpy import __email__, __author__, __version__, __maintainer__
except ImportError:
__author__ = __maintainer__ = "Theislab"
__email__ = ", ".join(
[
"giovanni.palla@helmholtz-muenchen.de",
"hannah.spitzer@helmholtz-muenchen.de",
]
)
__version__ = "1.2.3"
setup(
name="squidpy",
use_scm_version=True,
setup_requires=["setuptools_scm"],
version=__version__,
author=__author__,
author_email=__email__,
maintainer=__author__,
maintainer_email=__email__,
description=Path("README_pypi.rst").read_text("utf-8").splitlines()[2],
long_description=Path("README_pypi.rst").read_text("utf-8"),
long_description_content_type="text/x-rst; charset=UTF-8",
url="https://github.com/scverse/squidpy",
download_url="https://pypi.org/project/squidpy/",
project_urls={
"Documentation": "https://squidpy.readthedocs.io/en/stable",
"Source Code": "https://github.com/scverse/squidpy",
},
license="BSD",
platforms=["Linux", "MacOSX"],
packages=find_packages(),
zip_safe=False,
install_requires=[l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()],
extras_require=dict(
dev=["pre-commit>=2.9.0", "towncrier>=22.8.0"],
test=["tox>=3.26.0"],
docs=[
l.strip()
for l in (Path("docs") / "requirements.txt").read_text("utf-8").splitlines()
if not l.startswith("-r")
],
interactive=["napari[pyqt5]==0.4.15"], # "PyQt5>=5.15.0", "napari>=0.4.14,<0.4.16"],
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Typing :: Typed",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
keywords=sorted(
[
"single-cell",
"bio-informatics",
"spatial transcriptomics",
"spatial data analysis",
"image analysis",
"spatial data analysis",
]
),
)