-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.cfg
106 lines (96 loc) · 2.71 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
[metadata]
name = pronto
version = attr: pronto.__version__
author = Martin Larralde
author-email = [email protected]
home-page = https://github.com/althonos/pronto
description = Python frontend to ontologies.
long-description = file: README.md
long_description_content_type = text/markdown
license = MIT
license-file = COPYING
platform = any
keywords = bioinformatics, ontology, OBO, OWL, convert, parse
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Intended Audience :: Developers
Intended Audience :: Science/Research
Intended Audience :: Healthcare Industry
License :: OSI Approved :: MIT License
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
Typing :: Typed
project_urls =
Bug Tracker = https://github.com/althonos/pronto/issues
Changelog = https://pronto.readthedocs.io/en/latest/changes.html
Documentation = https://pronto.readthedocs.io/en/latest/
Coverage = https://app.codecov.io/gh/althonos/pronto
CI = https://github.com/althonos/pronto/actions
[options]
zip_safe = true
include_package_data = true
python_requires = >= 3.7
packages =
pronto
pronto.entity
pronto.logic
pronto.utils
pronto.parsers
pronto.serializers
test_suite = tests
setup_requires =
setuptools >=46.4
install_requires =
chardet ~=5.0
fastobo ~=0.12.2
networkx >=2.3,<4.0
python-dateutil ~=2.8
[options.package_data]
pronto = py.typed
[sdist]
formats = zip
[bdist_wheel]
universal = 1
[coverage:report]
exclude_lines =
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
except ImportError:
if typing.TYPE_CHECKING:
@abc.abstractmethod
[coverage:run]
branch = True
source = pronto
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
[pydocstyle]
inherit = false
ignore = D100,D101,D102,D105,D107,D200,D203,D213,D406,D407
match-dir = (?!tests)(?!resources)(?!docs)(?!build)[^\.].*
match = (?!test)(?!setup)[^\._].*\.py
[mypy]
ignore_missing_imports = true
[mypy-pronto.*]
disallow_any_decorated = false
disallow_any_generics = false
disallow_any_unimported = false
disallow_subclassing_any = true
disallow_untyped_calls = false
disallow_untyped_defs = false
ignore_missing_imports = false
warn_unused_ignores = false
warn_return_any = false