-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (45 loc) · 1.15 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
[metadata]
name = mutalyzer_retriever
version = 0.3.4
description = Mutalyzer genomic reference retriever.
long_description = file: README.md
long_description_content_type = text/markdown
author = Mihai Lefter
author_email = [email protected]
url = https://github.com/mutalyzer/retriever
keywords = Mutalyzer, HGVS, reference, retriever, genomic
license = MIT
classifiers =
Intended Audience :: Science/Research
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
packages = find:
install_requires =
biopython>=1.81
bcbio-gff>=0.7.1
requests>=2.26.0
schema>=0.7.4
tests_require =
pytest>=6.2.5
[options.entry_points]
console_scripts =
mutalyzer_retriever = mutalyzer_retriever.cli:main
[flake8]
ignore = E203, E266, E501, W503, F403, F401
max-line-length = 89
max-complexity = 18
select = B, C, E, F, W, T4, B9
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[testenv]
deps = pytest
commands = pytest
[tox:tox]
envlist = py36, py37, py38, py39