-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (37 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup
LONG_DESCRIPTION = \
'''
Mega-GO calculates the similarity between GO terms with the relevance semantic similarity (sim<sub>Rel</sub>) metric.
The program reads one or more input FASTA files.
For each file it computes a variety of statistics, and then
prints a summary of the statistics as output.
The goal is to provide a solid foundation for new bioinformatics command line tools,
and is an ideal starting place for new projects.'''
setup(
name='megago',
version='1.0.0.2021.04',
author='Henning Schiebenhoefer',
author_email='[email protected]',
packages=['megago'],
package_dir={'megago': 'megago'},
package_data={'megago': [
"resources/associations-uniprot-sp-20200116.tab",
"resources/go-basic.obo",
"resources/frequency_counts_uniprot.json",
"resources/highest_ic_uniprot.json",
"resources/heatmap_template.html"
]},
entry_points={
'console_scripts': ['megago = megago.megago:main']
},
url='https://github.com/MEGA-GO/megago',
license='LICENSE',
description=('Calculate semantic distance for sets of Gene Ontology terms'),
long_description=(LONG_DESCRIPTION),
install_requires=[
"goatools",
"seaborn",
"progress"
],
)