-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (33 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from glob import glob
with open("VERSION", "r") as version_file:
version = version_file.read().strip()
setuptools.setup(name="benj",
version=version,
author="Benjamin James",
author_email="[email protected]",
url="https://github.com/KellisLab/benj",
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",
"pyranges",
],
packages=setuptools.find_packages("."),
test_suite="test",
scripts=glob("scripts/*.py") + glob("scripts/*.sh") + glob("scripts/*.R")
)