-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.16 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
36
37
38
39
40
41
42
43
44
45
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="descartes_rpa",
version="1.2.1",
description="descartes_rpa: Extract pathway features from Single-Cell",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/reactome/descartes_rpa",
python_requires=">=3.8",
author="Joao Luiz de Meirelles",
author_email="[email protected]",
packages=[
"descartes_rpa",
"descartes_rpa.convert",
"descartes_rpa.fetch",
"descartes_rpa.io",
"descartes_rpa.pl",
"descartes_rpa.analyze",
"descartes_rpa.test"
],
install_requires=[
"scanpy==1.7.2",
"requests==2.25.1",
"aiohttp==3.7.4",
"flake8==3.9.2",
"loompy==3.0.6",
"reactome2py==3.0.0",
"seaborn==0.11.1",
"scikit-learn==0.24.2",
"statsmodels==0.12.2",
"numba==0.53.1",
"tables==3.6.1",
"python-igraph==0.9.1",
"leidenalg==0.8.4",
"UpSetPlot==0.6.1",
"matplotlib==3.5.2",
],
include_package_data=True
)