-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
executable file
·38 lines (36 loc) · 1.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from circ2.version import __version__
setup(name='CIRCexplorer2',
version=__version__,
description='Circular RNA analysis toolkits',
author='Xiao-Ou Zhang',
author_email='zhangxiaoou@picb.ac.cn',
url='https://github.com/YangLab/CIRCexplorer2',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='circular RNAs',
packages=find_packages(),
install_requires=[
'requests',
'pysam>=0.8.4',
'pybedtools',
'scipy',
'docopt'
],
entry_points={
'console_scripts': [
'CIRCexplorer2=circ2.command_parse:main',
'fetch_ucsc.py=circ2.fetch_ucsc:main',
'fast_circ.py=circ2.fast_circ:main'
],
},
)