forked from rajewsky-lab/novosparc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 896 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
from setuptools import setup, find_packages
with open("README.rst", "r") as fh:
long_description = fh.read()
try:
from novosparc import __author__, __email__, __version__
except ImportError: # Deps not yet installed
__author__ = __email__ = __version__ = ''
with open('requirements.txt', 'r') as f:
required_packages = f.read().splitlines()
setup(
name="novosparc",
version=__version__,
author=__author__,
author_email=__email__,
description="De novo spatial reconstruction of single-cell gene expression.",
long_description=long_description,
url="https://github.com/rajewsky-lab/novosparc",
license='MIT',
install_requires=required_packages,
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X"
]
)