-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
98 lines (86 loc) · 2.26 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
# https://gist.github.com/althonos/6914b896789d3f2078d1e6237642c35c
[metadata]
name = orthoani
version = attr: orthoani.__version__
author = Martin Larralde
author-email = [email protected]
home-page = https://github.com/althonos/orthoani
description = A Python implementation of the OrthoANI algorithm for nucleotide identity measurement.
long-description = file: README.md
long_description_content_type = text/markdown
license = MIT
license-file = COPYING
platform = any
keywords =
ani
average
nucleotide
identity
genomic
taxonomy
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering :: Bio-Informatics
Typing :: Typed
project_urls =
Bug Tracker = https://github.com/althonos/orthoani/issues
Changelog = https://github.com/althonos/orthoani/blob/master/CHANGELOG.md
[options]
zip_safe = false
include_package_data = true
python_requires = >= 3.6
packages = orthoani
test_suite = tests
setup_requires =
setuptools >=46.4
install_requires =
biopython ~=1.73
[options.package_data]
orthoani = py.typed
[options.entry_points]
console_scripts =
orthoani = orthoani._main:main
[options.extras_require]
cli =
better-exceptions ~=0.3.0
[bdist_wheel]
universal = true
[sdist]
formats = gztar
[coverage:report]
include = orthoani/*.py
show_missing = true
exclude_lines =
pragma: no cover
if False
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
[pydocstyle]
match = (?!test)(?!setup).*\.py
inherit = false
ignore = D200, D203, D213, D406, D407 # Google conventions
[flake8]
max-line-length = 99
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
[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