forked from saezlab/decoupler-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 882 Bytes
/
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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="decoupler",
version="1.5.0",
author="Pau Badia i Mompel",
author_email="[email protected]",
description="Ensemble of methods to infer biological activities from omics data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/saezlab/decoupler-py",
project_urls={
"Bug Tracker": "https://github.com/saezlab/decoupler-py/issues",
},
install_requires=["numba",
"tqdm",
"anndata",
"typing_extensions"],
packages=["decoupler"],
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"]
)