-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
48 lines (43 loc) · 1.41 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
#! /usr/bin/env python
# -*- encoding:utf-8 -*-
import os
import codecs
from setuptools import setup, find_packages
from CIRIquant.version import __version__
def read(infile):
return codecs.open(os.path.join(os.path.dirname(__file__), infile)).read()
setup(
name='CIRIquant',
version=__version__,
author='Jinyang Zhang',
author_email='zhangjinyang@biols.ac.cn',
maintainer='Jinyang Zhang',
maintainer_email='zhangjinyang@biols.ac.cn',
url='https://github.com/bioinfo-biols/CIRIquant',
description='circular RNA quantification pipeline',
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'CIRIquant=CIRIquant.main:main',
'CIRI_DE=CIRIquant.de:main',
'CIRI_DE_replicate=CIRIquant.replicate:main',
'prep_CIRIquant=CIRIquant.prep_CIRIquant:main'
]
},
keywords='circRNA',
include_package_data=True,
zip_safe=False,
install_requires=[
'argparse>=1.2.1', 'PyYAML==5.4', 'pysam==0.15.2', 'numpy==1.16.4',
'scipy==1.2.2', 'scikit-learn==0.20.3', 'numexpr==2.6.9',
],
)