forked from Hoohm/CITE-seq-Count
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 982 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
28
29
30
31
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="CITE-seq-Count",
version="1.4.5",
author="Roelli Patrick",
author_email="patrick.roelli@gmail.com",
description="A python package to map reads from CITE-seq or hashing data for single cell experiments",
url="https://github.com/Hoohm/CITE-seq-Count/",
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["CITE-seq-Count = cite_seq_count.__main__:main"]},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
install_requires=[
"python-levenshtein>=0.12.0",
"scipy>=1.1.0",
"multiprocess>=0.70.6.1",
"umi_tools==1.0.0",
"pytest==4.1.0",
"pytest-dependency==0.4.0",
"pandas>=0.23.4",
"pybktree==1.1",
],
python_requires=">=3.6",
)