forked from JonathanShor/DoubletDetection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 888 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
from setuptools import setup
import sys
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"License :: OSI Approved :: MIT",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
if sys.version_info.major != 3:
print('doubletdetection requires Python 3')
sys.exit(1)
setup(
name='doubletdetection',
version='2.3.0',
description='Method to detect and enable removal of doublets from single-cell RNA-sequencing '
'data',
url='https://github.com/JonathanShor/DoubletDetection',
author='Adam Gayoso, Jonathan Shor, Ambrose J. Carr',
author_email='[email protected]',
package_dir={'': 'src'},
packages=['doubletdetection'],
install_requires=[],
)