-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
41 lines (36 loc) · 976 Bytes
/
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
[metadata]
name = mutalyzer_backtranslate
version = 1.0.0
description = Functions for reverse translation.
long_description = file: README.rst
author = LUMC, Jeroen F.J. Laros
author_email = [email protected]
url = https://github.com/mutalyzer/backtranslate
keywords = bioinformatics
license = MIT
classifiers =
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
[options]
packages = find:
install_requires =
biopython>=1.76
python-Levenshtein>=0.12.0
tests_require =
fake-open>=0.0.1
pytest-cov>=2.10.0
pytest-pep8>=1.0.6
pytest>=4.0.1
[options.entry_points]
console_scripts =
backtranslate = mutalyzer_backtranslate.cli:main
[tool:pytest]
pep8ignore = docs/conf.py ALL
[coverage:report]
exclude_lines = def main()
[coverage:run]
source = mutalyzer_backtranslate