forked from knights-lab/SHOGUN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (51 loc) · 2.14 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
49
50
51
52
53
54
55
56
57
58
"""
Copyright 2015-2020 Knights Lab, Regents of the University of Minnesota.
This software is released under the GNU Affero General Public License (AGPL) v3.0 License.
"""
from setuptools import setup, find_packages
import versioneer
__author__ = "Knights Lab"
__copyright__ = "Copyright (c) 2016--, %s" % __author__
__credits__ = ["Benjamin Hillmann", "Dan Knights", "Gabe Al-Ghalith", "Tonya Ward", "Pajau Vangay"]
__email__ = "[email protected]"
__license__ = "AGPL"
__maintainer__ = "Benjamin Hillmann"
long_description = ''
setup(
name='shogun',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=[]),
url='',
license=__license__,
author=__author__,
author_email=__email__,
description='',
long_description=long_description,
keywords='',
install_requires=[],
entry_points={
'console_scripts': [
'shogun = shogun.__main__:cli'
]
},
extras_require={
'develop': ['ipython', 'ipdb', 'networkx'],
'demo': ['jupyter', 'jupyter_client', 'ipython'],
'doc': ['sphinx'],
},
)
# scripts=glob(os.path.join('shogun', 'scripts', '*py')),
# 'shogun_bt2_align = shogun.scripts.shogun_bt2_align:shogun_bt2_align',
# 'shogun_bt2_db = shogun.scripts.shogun_bt2_db:shogun_bt2_db',
# 'shogun_bt2_lca = shogun.scripts.shogun_bt2_lca:shogun_bt2_lca',
# 'shogun_bt2_capitalist = shogun.scripts.shogun_bt2_capitalist:shogun_bt2_capitalist',
# 'shogun_utree_db = shogun.scripts.shogun_utree_db:shogun_utree_db',
# 'shogun_utree_lca = shogun.scripts.shogun_utree_lca:shogun_utree_lca',
# 'shogun_utree_capitalist = shogun.scripts.shogun_utree_capitalist:shogun_utree_capitalist',
# 'shogun_utree_functional = shogun.scripts.shogun_utree_functional:shogun_utree_functional',
# 'shogun_bugbase = shogun.scripts.shogun_bugbase:shogun_bugbase',
# 'extract_genome_lengths = shogun.scripts.extract_genome_lengths:extract_genome_lengths',
# 'kegg_predictions = shogun.scripts.kegg_predictions:main',
# 'kegg_mapping_extract_img_id = shogun.scripts.kegg_mapping_extract_img_id:main',
# 'kegg_parse_img_ids = shogun.scripts.kegg_parse_img_ids:main',