-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
56 lines (50 loc) · 1.43 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
import os
import sys
from setuptools import setup, find_packages
install_requires = [
"numpy>=1.19.5",
"pandas>=1.2.1",
"scipy >=1.4.1",
"anndata>=0.7.5",
"scikit-learn>=0.24.2",
"matplotlib",
"seaborn>=0.11.1",
"statsmodels>=0.12.2"
]
if sys.version_info[:2] < (3, 7):
raise RuntimeError("Python version >=3.7 required.")
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
setup(
name="spatialcorr",
version="1.2.0",
description="SpatialCorr",
author="Matthew N. Bernstein",
author_email="[email protected]",
packages=[
"spatialcorr"
],
license="MIT License",
install_requires=install_requires,
long_description=readme,
package_data={'spatialcorr':['datasets/GSM4284326_P10_ST_rep2.h5ad']},
include_package_data=True,
zip_safe=True,
url="https://github.com/mbernste/spatialcorr",
entry_points={},
keywords=[
"spatial-transcriptomics",
"gene-expression",
"computational-biology"
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
)