-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (78 loc) · 1.95 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 = pybel_ols
version = 0.0.2-dev
description = A package for building BEL resource files with the EBI Ontology Lookup Service.
long_description = file: README.rst
license = MIT License
license_file = LICENSE
url = https://github.com/pybel/pybel-ols
download_url = https://github.com/pybel/pybel-ols/releases
project_urls =
Bug Tracker = https://github.com/pybel/pybel-ols/issues
Source Code = https://github.com/pybel/pybel-ols
author = Charles Tapley Hoyt
author_email = [email protected]
maintainer = Charles Tapley Hoyt
maintainer_email = [email protected]
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3 :: Only
keywords =
Biological Expression Language
BEL
Semantic Web
Networks Biology
Systems Biology
Ontologies
[options]
install_requires =
pybel
bel-resources>=0.0.2
click
ols-client
python_requires = >=3.6
tests_require =
tox
packages = find:
package_dir =
= src
zip_safe = true
[options.packages.find]
where = src
[options.extras_require]
docs =
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
[options.entry_points]
console_scripts =
pybel-ols = pybel_ols.cli:main
######################
# Doc8 Configuration #
# (doc8.ini) #
######################
[doc8]
max-line-length = 120
##########################
# Coverage Configuration #
# (.coveragerc) #
##########################
[coverage:run]
branch = True
source = pybel-ols
[coverage:paths]
source =
src/pybel_ols
.tox/*/lib/python*/site-packages/pybel_ols
[coverage:report]
show_missing = True