-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (80 loc) · 2.28 KB
/
setup.cfg
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
##########################
# Setup.py Configuration #
##########################
[metadata]
name = taubase
version = attr: src.taubase.version.VERSION
description = A knowledge graph and web app for the Tau protein
long_description = file: README.rst
# URLs associated with the project
url = https://github.com/pharmacome/taubase
# Author information
author = Charles Tapley Hoyt
author_email = charles.hoyt@scai.fraunhofer.de
maintainer = Charles Tapley Hoyt
maintainer_email = charles.hoyt@scai.fraunhofer.de
# License Information
license = MIT
license_file = LICENSE
# Search tags
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Chemistry
keywords =
Biological Expression Language
BEL
Domain Specific Language
DSL
Systems Biology
Networks Biology
[options]
install_requires =
click
# Web
flask
flask_bootstrap
# Scientific
pandas
# BEL
pybel
bel-repository
bel-enrichment
# HBP content
hbp-knowledge @ git+https://www.github.com/pharmacome/knowledge.git@v0.0.5
hbp-enrichment @ git+https://www.github.com/bel-enrichment/results.git
hbp-semi-automated-curation @ git+https://www.github.com/pharmacome/semi-automated-curation.git@v0.1.1
# NeuroMMSig Content
# neurommsig-alzheimers-knowledge @ git+https://gitlab.scai.fraunhofer.de/charles.hoyt/neurommsig-alzheimers.git
# neurommsig-parkinsons-knowledge @ git+https://gitlab.scai.fraunhofer.de/charles.hoyt/neurommsig-parkinsons.git
epilepsy-knowledge @ git+https://github.com/neurommsig-epilepsy/knowledge.git
# Random options
zip_safe = false
include_package_data = True
python_requires = >=3.7
# Where is my code
packages = find:
package_dir =
= src
[options.packages.find]
where = src
[options.extras_require]
html =
pybel-tools
cx =
pybel_cx
docs =
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
[options.entry_points]
console_scripts =
taubase = taubase.cli:main