-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
108 lines (97 loc) · 2.21 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[metadata]
name = indra_cogex
version = 1.0.0
description = INDRA Context Graph Extension
long_description = file: README.md
long_description_content_type = text/markdown
# Author Information
author = Benjamin M. Gyori
author_email = [email protected]
# Project Information
url = https://github.com/indralab/indra_cogex
download_url = https://github.com/indralab/indra_cogex/releases
# License Information
license = BSD-2-Clause
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
keywords =
INDRA
systems biology
knowledge graphs
[options]
install_requires =
indra @ git+https://github.com/sorgerlab/indra.git
neo4j
click
more_click>=0.1.1
class-resolver>=0.0.9
pystow>=0.1.6
bioregistry>=0.9.62
pyobo>=0.9.1
numpy
scipy
statsmodels
pandas
python-dateutil
include_package_data = True
python_requires = >=3.7
packages = find:
package_dir =
= src
[options.packages.find]
where = src
[options.extras_require]
tests =
nose
assembly =
gilda
biomappings
web =
flask
flask-restx
flask-wtf
bootstrap-flask>=2.0.0
flask_jwt_extended
docstring-parser
indralab_auth_tools @ git+https://github.com/gyorilab/ui_util.git#egg=indralab_auth_tools&subdirectory=indralab_auth_tools
pusher
markupsafe
gunicorn =
gunicorn
gsea =
gseapy
docs =
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
######################
# Doc8 Configuration #
# (doc8.ini) #
######################
[doc8]
max-line-length = 120
##########################
# Darglint Configuration #
##########################
[darglint]
docstring_style = sphinx
strictness = short
#######################
# isort Configuration #
#######################
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = true
reverse_relative = true