-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
50 lines (44 loc) · 1.06 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
[metadata]
name = mutalyzer_api
version = 0.3.1
description = Mutalyzer HGVS variant description normalizer.
long_description = file: README.md
long_description_content_type = text/markdown
author = Mihai Lefter
author_email = [email protected]
url = https://github.com/mutalyzer/api
keywords = Mutalyzer, HGVS
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 =
mutalyzer>=3.0.7
flask-restx>=1.3.0
Flask-Cors>=4.0.0
tests_require =
pytest
[options.entry_points]
console_scripts =
mutalyzer_api = mutalyzer_api.api: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 = py35