-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
114 lines (103 loc) · 2.4 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
109
110
111
112
113
114
[bumpversion]
current_version = 0.2.2
[metadata]
name = drugintfinder
version = 0.3.1
description = DIF - Identification of druggable interactors in Knowledge Graphs
long_description = file: README.rst
url = https://github.com/e-bel/drugintfinder
project_urls =
Bug Tracker = https://github.com/e-bel/drugintfinder/issues
Source Code = https://github.com/e-bel/drugintfinder
Documentation = https://druggable-interactor-finder.readthedocs.io/en/latest/
author = Bruce Schultz
author_email = [email protected]
maintainer = Bruce Schultz
maintainer_email = [email protected]
license = MIT License
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Bio-Informatics
keywords =
Biological Expression Language
Graph Database
Biomedical Database
[options]
install_requires =
click>=8.0.1
ebel-rest>=1.0.17
pandas>=1.3.1
matplotlib>=3.4.2
tqdm>=4.61.2
requests>=2.26.0
sqlalchemy>=1.3.23
sqlalchemy_utils>=0.36.8
openpyxl>=3.0.7
zip_safe = false
python_requires = >=3.7
include_package_data = True
packages = find:
[options.packages.find]
include =
drugintfinder
drugintfinder.*
[options.extras_require]
docs =
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
[options.entry_points]
console_scripts =
dif = drugintfinder.cli:main
[flake8]
ignore =
D105
E722
W503
F401
exclude =
.git,
__pycache__
max-line-length = 119
[coverage:run]
branch = True
source = drugintfinder
omit =
drugintfinder/__main__.py
drugintfinder/cli.py
tests/*
docs/*
[coverage:paths]
source =
drugintfinder
.tox/*/lib/python*/site-packages/drugintfinder
[coverage:report]
show_missing = True
exclude_lines =
def __str__
def __repr__
[bumpver]
current_version = "0.3.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
[bumpver:file_patterns]
setup.cfg =
^version = {version}$
^current_version = "{version}"$
drugintfinder/__init__.py =
^__version__ = '{version}'$