forked from biosustain/sanger-sequencing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
89 lines (80 loc) · 2.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
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
[metadata]
name = sanger-sequencing
url = https://github.com/biosustain/sanger-sequencing
download_url = https://pypi.org/project/sanger-sequencing/
author = Novo Nordisk Foundation Center for Biosustainability, Technical University Denmark
author_email = [email protected]
maintainer = Moritz E. Beber
maintainer_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: POSIX
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering :: Bio-Informatics
license = Apache Software License Version 2.0
description = Semi-automated Sanger sequence analysis for transformation verification.
long_description = file: README.rst
keywords =
Sanger sequencing
automated analysis
mix2seq
plasmid verification
[options]
zip_safe = True
install_requires =
depinfo
biopython
numpy
pandas
xlrd
requests
goodtables
importlib-resources
python_requires = >=3.6
packages = find:
[options.packages.find]
where = src
[options.package_data]
sanger_sequencing.validation.schemata =
*.json
[wheel]
universal = 1
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 80
exclude =
__init__.py
_version.py
[tool:pytest]
testpaths = tests
[isort]
line_length = 80
indent = 4
multi_line_output = 4
lines_after_imports = 2
known_first_party = sanger_sequencing
known_third_party =
depinfo
pytest
Bio
numpy
pandas
requests
goodtables
importlib_resources
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = src/sanger_sequencing/_version.py
versionfile_build = sanger_sequencing/_version.py
tag_prefix =
parentdir_prefix = sanger-sequencing-