-
Notifications
You must be signed in to change notification settings - Fork 22
/
__init__.py
60 lines (57 loc) · 1.78 KB
/
__init__.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
#!python
# try:
# from . import (
# model, spec_lib
# )
# from . import protein # rely on spec_lib, import after
# except (ImportError,RuntimeError, OSError):
# # happends when installation
# pass
__project__ = "peptdeep"
__version__ = "1.3.0"
__license__ = "Apache 2.0"
__description__ = "The AlphaX deep learning framework for Proteomics"
__author__ = "Mann Labs"
__author_email__ = "[email protected]"
__github__ = "https://github.com/MannLabs/peptdeep"
__doc__ = "https://alphapeptdeep.readthedocs.io/en/latest/"
__pypi__ = "https://pypi.org/project/peptdeep/"
__keywords__ = [
"deep learning",
"proteomics",
"AlphaX ecosystem",
]
__python_version__ = ">=3.8"
__classifiers__ = [
# "Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive"
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
__console_scripts__ = [
"peptdeep=peptdeep.cli:run",
]
__urls__ = {
"Mann Labs at MPIB": "https://www.biochem.mpg.de/mann",
"Mann Labs at CPR": "https://www.cpr.ku.dk/research/proteomics/mann/",
"GitHub": __github__,
"Docs": __doc__,
"PyPi": __pypi__,
}
__extra_requirements__ = {
"development-stable": "development-stable.txt",
"gui-stable": "gui-stable.txt",
"hla-stable": "hla-stable.txt",
"stable": "base-stable.txt",
"development": "development.txt",
"gui": "gui.txt",
"hla": "hla.txt",
}