[go: up one dir, main page]

Menu

[r3]: / setup.py  Maximize  Restore  History

Download this file

37 lines (33 with data), 1.1 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
35
#!/usr/bin/env python
from distutils.core import setup
setup(name='REDItools',
version='1.0.3',
description='Python Scripts for RNA editing detection by RNA-Seq data',
author='Ernesto Picardi',
author_email='ernesto.picardi@gmail.com',
url='http://code.google.com/p/reditools/',
scripts=['reditools/REDItoolBlatCorrection.py',
'reditools/REDItoolDenovo.py',
'reditools/REDItoolDnaRna.py',
'reditools/REDItoolKnown.py',
'reditools/AnnotateTable.py',
'reditools/FilterTable.py',
'reditools/SearchInTable.py',
'reditools/selectPositions.py',
'reditools/GFFtoTabix.py',
'reditools/SortGFF.py',
'reditools/SortTable.py',
'reditools/TableToGFF.py',
'reditools/tableToTabix.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').read(),
platforms=['Linux','Unix','MacOS']
)