-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (20 loc) · 912 Bytes
/
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
#!/usr/bin/python3
from distutils.core import setup
import rnaFeaturesLib
config = {
'name': 'rnaFeaturesLib',
'version': rnaFeaturesLib.__version__,
'author': 'Costas Bouyioukos',
'author_email': '[email protected]',
'url': 'github.com/parisepigenetics/rna_feat_ext',
'description': 'A software tool to extract mRNA data from ENSEMBL and compute sequence and structural features.',
'long_description': open("README.md").read(),
'download_url': 'https://github.com/parisepigenetics/rna_feat_ext.git',
'py_modules': ['rnaFeaturesLib'],
'scripts': ['bin/fasta2table.py', 'bin/geneIDs2fasta.py'],
'requires': ['biomart', 'biopython', 'pandas', 'prettytable'],
#'data_files': [('data', ['testRNAfeatExt_IDs.txt'])],
'license': 'GPL v3.0 or later',
'classifiers': ['Programming Language :: Python', 'Topic :: Science :: Computational Biology'],
}
setup(**config)