-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 822 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 822 Bytes
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
from setuptools import setup, find_packages
from psix.version import __version__
import os
# Parse version string
this_directory = os.path.dirname(os.path.abspath(__file__))
setup(
name="psix",
version=__version__,
packages=find_packages(),
install_requires=[
'matplotlib>=3.2.1',
'numba>=0.43.1',
'numpy>=1.18.1',
'seaborn>=0.10.0',
'scipy>=1.4.1',
'pandas>=1.0.3',
'tqdm>=4.46.0',
'statsmodels>=0.11.0',
'scikit-learn>=0.22.2',
'anndata>=0.7.5',
],
include_package_data=True,
author="Carlos F Buen Abad Najar",
author_email="cfbuenabadn@berkeley.edu",
description="Psix is a computational tool that finds cell-state associated exons in scRNA-seq data",
keywords="",
url="",
license=""
)