-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
37 lines (32 loc) · 972 Bytes
/
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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
d = {}
with open("tangram/_version.py") as f:
exec(f.read(), d)
setuptools.setup(
name="tangram-sc",
version=d["__version__"],
author="Tommaso Biancalani, Gabriele Scalia",
author_email="tommaso.biancalani@gmail.com",
description="Spatial alignment of single cell transcriptomic data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/broadinstitute/Tangram",
packages=setuptools.find_namespace_packages(),
classifiers=["Programming Language :: Python :: 3.8", "Operating System :: MacOS",],
python_requires=">=3.8.5",
install_requires=[
"pip",
"torch",
"pandas",
"numpy",
"scipy",
"matplotlib",
"seaborn",
"scanpy",
"scikit-learn",
"tqdm",
],
)