forked from EBI-Metagenomics/hmmer-py-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (43 loc) · 1.25 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
[metadata]
author = Danilo Horta
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
description = Python interface for HMMER software
download_url = https://github.com/EBI-Metagenomics/hmmer-py
keywords = hmmer, dna, protein
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Danilo Horta
platforms = Windows, MacOS, Linux
maintainer_email = [email protected]
name = hmmer
url = https://github.com/EBI-Metagenomics/hmmer-py
version = attr: version.get
[options]
zip_safe = False
include_package_data = True
packages = find:
setup_requires =
pytest-runner>=5.2
install_requires =
appdirs>=1.4.3
fasta-reader>=0.0.9
pytest>=5.3.5
[aliases]
test = pytest
[tool:pytest]
addopts =
--doctest-modules
--ignore="setup.py"
doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ELLIPSIS ALLOW_UNICODE
norecursedirs = .eggs .git *.egg-info build .ropeproject .undodir profmark
pep8ignore = E402 W0212 W0622 R0915 E743
[pylint]
disable = redefined-builtin,R0915,line-too-long
[flake8]
ignore = E501 E741 E203 W503 W0212 W0622 R0915 E743