-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (32 loc) · 1.03 KB
/
setup.py
File metadata and controls
executable file
·34 lines (32 loc) · 1.03 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from src.version import __version__
setup(name='CLEAR',
version=__version__,
description='Circular RNA quantification toolkits',
author='Xu-Kai Ma',
author_email='maxukai@picb.ac.cn',
url='https://github.com/YangLab/CLEAR',
license='GPLv3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: GPLv3 License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='circular RNAs, quantification',
packages=find_packages(),
install_requires=[
'pysam>=0.8.4',
'pybedtools',
],
entry_points={
'console_scripts': [
'clear_quant=src.run:main',
'circ_quant=src.circ_quant:main',
],
},
)