-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (46 loc) · 1.65 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
46
47
48
49
50
from setuptools import setup, find_packages
from setuptools.extension import Extension
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
requires = [
"docopt",
"numpy",
"pandas>=1.5.0",
"scipy",
"scikit-learn",
"seaborn",
"pegasusio >=0.2.12",
]
setup(
name="demuxEM",
use_scm_version=True,
zip_safe=False,
description="demuxEM is the demultiplexing module of Pegasus",
long_description=long_description,
url="https://github.com/lilab-bcb/demuxEM",
author="Yiming Yang, Asma Bankapur, Joshua Gould and Bo Li",
author_email="cumulus-support@googlegroups.com",
classifiers=[ # https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="demultiplexing cell/nucleus hashing single-cell data",
packages=find_packages(),
install_requires=requires,
setup_requires = ["setuptools_scm"],
python_requires="~=3.8",
entry_points={"console_scripts": ["demuxEM=demuxEM.__main__:main"]},
)