-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
74 lines (68 loc) · 2.59 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
[metadata]
name = Orange3-Bioinformatics
author = Bioinformatics Laboratory, FRI UL
author_email = [email protected]
maintainer = Jaka Kokosar
url = https://github.com/biolab/orange3-bioinformatics
project_urls =
Bug Tracker = https://github.com/biolab/orange3-bioinformatics/issues
Documentation = https://orange3-bioinformatics.readthedocs.io/en/latest/
Source Code = https://github.com/biolab/orange3-bioinformatics/
documentation_name = Orange Bioinformatics
description = Orange Bioinformatics add-on for Orange data mining software package.
long_description = file: README.pypi
long_description_content_type= text/markdown
keywords = 'orange3 add-on'
license = GPL3+
license_file = LICENSE
classifiers =
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Visualization
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development :: Libraries :: Python Modules
Intended Audience :: Education
Intended Audience :: Science/Research
Intended Audience :: Developers
Development Status :: 1 - Planning
Programming Language :: Python :: 3 :: Only
Operating System :: OS Independent
[options]
namespace_packages = orangecontrib
test_suite = orangecontrib.bioinformatics.tests.suite
zip_safe = False
include_package_data = True
python_requires = >=3.6
packages = find:
[options.entry_points]
orange3.addon =
bioinformatics=orangecontrib.bioinformatics
orange.widgets =
Bioinformatics=orangecontrib.bioinformatics.widgets
orange.canvas.help =
html-index = orangecontrib.bioinformatics.widgets:WIDGET_HELP_PATH
[flake8]
# Black compatibility
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
# Ignore this since we use PyQt5 basically everywhere.
N802,N815,N816
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length
E501
extend-select =
B950,
max-complexity = 20
exclude =
# Exclude some modules that were ported from legacy add-on.
orangecontrib/bioinformatics/kegg/
orangecontrib/bioinformatics/widgets/utils/gui/
# Exclude some widgets that were ported from legacy add-on.
orangecontrib/bioinformatics/widgets/OWVolcanoPlot.py
orangecontrib/bioinformatics/widgets/OWKEGGPathwayBrowser.py
orangecontrib/bioinformatics/widgets/OWDifferentialExpression.py
orangecontrib/bioinformatics/widgets/OWVolcanoPlot.py
orangecontrib/bioinformatics/widgets/OWDatabasesUpdate.py
ignore-names =
settingsHandler