-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
39 lines (36 loc) · 1.11 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
from distutils.core import setup
setup(name='REDItools',
version='1.3',
description='Python Scripts for RNA editing detection by RNA-Seq data',
author='Ernesto Picardi',
author_email='[email protected]',
url='https://github.com/BioinfoUNIBA/REDItools',
scripts=['main/REDItoolDenovo.py',
'main/REDItoolDnaRna.py',
'main/REDItoolKnown.py',
'accessory/AnnotateTable.py',
'accessory/FilterTable.py',
'accessory/SearchInTable.py',
'accessory/selectPositions.py',
'accessory/GFFtoTabix.py',
'accessory/SortGFF.py',
'accessory/SortTable.py',
'accessory/TableToGFF.py',
'accessory/tableToTabix.py',
'accessory/readPsl.py',
'accessory/subCount.py',
'accessory/subCount2.py',
'accessory/rediportal2recoding.py'
],
license='LICENSE.txt',
classifiers=[
'Intended Audience :: Computational biologists',
'License :: OSI Approved :: MIT',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
],
long_description=open('README_1.md').read(),
platforms=['Linux','Unix','MacOS']
)