-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
40 lines (34 loc) · 1.02 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
[metadata]
name = mutalyzer-algebra
version = 1.5.1
description = A Boolean Algebra for Genetic Variants
long_description = file: README.md
long_description_content_type = text/markdown
author = Mark A. Santcroos, Jonathan K. Vis
author_email = [email protected], [email protected]
url = https://github.com/mutalyzer/algebra
keywords = algebra, genomics, graph, string, genetics, edit-distance, alignment, compare, sequence, variants, lcs, relations, hgvs, extractor
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:
[options.entry_points]
console_scripts =
algebra = algebra.__main__:main
[options.extras_require]
dev = coverage; flake8; pytest
[coverage:run]
command_line =
-m pytest
dynamic_context = test_function
[coverage:report]
omit =
tests/*
show_missing = True
[coverage:html]
show_contexts = True