forked from azizilab/starfysh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.02 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
from setuptools import setup, find_packages
with open("requirements.txt", 'r') as ifile:
requirements = ifile.read().splitlines()
nb_requirements = [
'nbconvert>=6.1.0',
'nbformat>=5.1.3',
'notebook>=6.4.11',
'jupyter>=7.0.0',
'jupyterlab>=3.4.3',
'ipython>=7.27.0',
]
setup(
name="Starfysh",
version="1.1.0",
description="Spatial Transcriptomic Analysis using Reference-Free auxiliarY deep generative modeling and Shared Histology",
authors=["Siyu He", "Yinuo Jin", "Achille Nazaret"],
url="https://starfysh.readthedocs.io",
packages=find_packages(),
python_requires='>=3.7',
install_requires=requirements,
# package_data = ""; include_package_data=True
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
extras_require={
'notebooks': nb_requirements,
'dev': open('dev-requirements.txt').read().splitlines(),
}
)