forked from shimlab/BLAZE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.04 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='blaze2',
version='2.2.0',
author='Yupei You',
author_email="[email protected]",
description='Barcode identification from Long reads for AnalyZing single cell gene Expression',
packages=find_packages(),
test_suite='test',
long_description=long_description,
long_description_content_type='text/markdown',
package_data={'blaze': ['10X_bc/3M-february-2018.zip', '10X_bc/737K-august-2016.txt']},
url="https://github.com/shimlab/BLAZE",
install_requires=["fast-edit-distance==1.2.1",
'matplotlib',
'tqdm', 'numpy',
'pandas'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'blaze = blaze:_pipeline',
],
},
)