-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.14 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from glob import glob
setuptools.setup(name="epiclust",
version="0.3.5",
author="Benjamin James",
author_email="[email protected]",
url="https://github.com/KellisLab/epiclust",
license="GPL",
install_requires=[
"numpy",
"scipy",
"scikit-learn",
"numba",
"anndata>=0.8.0",
"pandas",
"umap-learn",
"pynndescent>=0.5.7",
"scanpy",
"matplotlib",
"seaborn",
"python-igraph",
"leidenalg",
"tqdm",
"infomap>=2.5.0",
"gtfparse",
"pytabix",
"pyranges",
],
packages=setuptools.find_packages("."),
test_suite="test",
scripts=glob("scripts/*.py"),
)