-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
109 lines (100 loc) · 3.22 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
[metadata]
name = pytrimal
version = attr: pytrimal._version.__version__
author = Martin Larralde
author_email = martin.larralde@embl.de
url = https://github.com/althonos/pytrimal
description = Cython bindings and Python interface to trimAl, a tool for automated alignment trimming.
long_description = file: README.md
long_description_content_type = text/markdown
license = GPL-3.0-only
platform = any
keywords = bioinformatics, sequence, alignment, trimming, genomics
classifier =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: C
Programming Language :: Cython
Programming Language :: Python :: 3.6
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
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Medical Science Apps.
Typing :: Typed
project_urls =
Documentation = https://pytrimal.readthedocs.io/en/stable/
Bug Tracker = https://github.com/althonos/pytrimal/issues
Changelog = https://github.com/althonos/pytrimal/blob/main/CHANGELOG.md
Coverage = https://codecov.io/gh/althonos/pytrimal/
Builds = https://github.com/althonos/pytrimal/actions
PyPI = https://pypi.org/project/pytrimal
[options]
zip_safe = false
packages = pytrimal, pytrimal.tests, pytrimal.tests.data
include_package_data = false
python_requires = >=3.5
setup_requires =
setuptools >=46.4
cython ~=3.0
scoring-matrices ~=0.2.0
install_requires =
scoring-matrices ~=0.2.0
tests_require =
importlib-resources ; python_version < '3.9'
# [options.entry_points]
# console_scripts =
# pytrimal = pytrimal.cli:main
[options.package_data]
pytrimal = py.typed, *.pyi
pytrimal.tests = requirements.txt
pytrimal.tests.data = *
[coverage:run]
plugins = Cython.Coverage
include = pytrimal/*.py, pytrimal/*.pyx
[coverage:report]
include = pytrimal/*
omit = pytrimal/tests/*
show_missing = true
exclude_lines =
pragma: no cover
if typing.TYPE_CHECKING:
@abc.abstractmethod
@abc.abstractproperty
raise NotImplementedError
return NotImplemented
raise MemoryError()
[pydocstyle]
inherit = false
ignore = D102,D105,D200,D203,D213,D406,D407
match-dir = (?!tests)(?!docs)[^\.].*
match = (?!test)(?!setup)[^\._].*\.py
[mypy]
disallow_any_decorated = true
disallow_any_generics = true
disallow_any_unimported = false
disallow_subclassing_any = false
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_return_any = true
exclude = pytrimal/tests/*
[mypy-pytrimal.tests]
disallow_untyped_defs = false
[isort]
known_first_party = pytrimal, trimal
known_standard_library = cpython, cython, _unicode
known_third_party = libc, libcpp
line_length = 88
profile = black
skip_gitignore = true
skip_glob = vendor/trimal/*