forked from eggnogdb/eggnog-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (51 loc) · 1.77 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
59
60
61
#! /usr/bin/env python
import os
from setuptools import setup, find_packages
#HERE = os.path.abspath(os.path.split(os.path.realpath(__file__))[0])
CLASSIFIERS= [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
MOD_NAME = "eggnogmapper"
VERSION = '1.0'
LONG_DESCRIPTION="""
Functional annotation of novel sequences using eggNOG orthology assignments.
"""
try:
_s = setup(
include_package_data = False,
name = MOD_NAME,
version = VERSION,
packages = ['eggnogmapper'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = [
],
package_data = {
},
data_files = [],
# metadata for upload to PyPI
author = "Jaime Huerta-Cepas",
author_email = "[email protected]",
maintainer = "Jaime Huerta-Cepas",
maintainer_email = "[email protected]",
platforms = "OS Independent",
license = "GPLv3",
description = "A Python Environment for (phylogenetic) Tree Exploration",
long_description = LONG_DESCRIPTION,
classifiers = CLASSIFIERS,
provides = [MOD_NAME],
keywords = "functional annotation, orthology, eggNOG",
url = "http://eggnogdb.embl.de",
)
except:
print("\033[91m - Errors found! - \033[0m")
raise