forked from broadinstitute/CellBender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (41 loc) · 1.37 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
#!/usr/bin/env python
import os
import setuptools
def readme():
with open('README.rst') as f:
return f.read()
def get_requirements_filename():
if 'READTHEDOCS' in os.environ:
return "REQUIREMENTS-RTD.txt"
elif 'DOCKER' in os.environ:
return "REQUIREMENTS-DOCKER.txt"
else:
return "REQUIREMENTS.txt"
install_requires = [
line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), get_requirements_filename()))
]
setuptools.setup(
name='cellbender',
version='0.2.2',
description='A software package for eliminating technical artifacts from '
'high-throughput single-cell RNA sequencing (scRNA-seq) data',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research'
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='scRNA-seq bioinformatics',
url='http://github.com/broadinstitute/CellBender',
author='Stephen Fleming, Mehrtash Babadi',
license='BSD (3-Clause)',
packages=setuptools.find_packages(),
install_requires=install_requires,
entry_points={
'console_scripts': ['cellbender=cellbender.base_cli:main'],
},
include_package_data=True,
zip_safe=False
)