-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·30 lines (28 loc) · 1.24 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
from setuptools import setup, find_packages
import numpy as np
from get_version import get_version
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="Scribe",
__version__ = get_version(__file__),
install_requires=['cvxopt>=1.2.3', 'pandas>=0.23.0', 'numpy>=1.14', 'scipy>=1.0', 'scikit-learn>=0.19.1',
'pyccm>=0.4', 'statsmodels>=0.9.0', 'scanpy>=1.3.3', 'anndata>=0.6.18', 'loompy>=2.0.12',
'matplotlib>=2.2', 'seaborn>=0.9.0', 'networkx>=2.3', 'setuptools'],
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
include_dirs=[np.get_include()],
author="Xiaojie Qiu, Arman Rahimzamani, Bingcheng Ren, Weihao Gao",
author_email="[email protected]",
description='Detect causality from single cell measurements',
long_description=long_description,
long_description_content_type="text/markdown",
license='BSD',
url="https://github.com/aristoteleo/Scribe-py",
download_url=f"https://github.com/aristoteleo/Scribe-py",
keywords=["RNAseq", "singlecell", "network", "causality", "velocity"]
)