-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
49 lines (45 loc) · 1.09 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
[metadata]
name = bohra
author = Kristy Horan
author_email = [email protected]
description = A bioinformatics pipeline for analysing short read Illumina data microbiological public health.
version = 2.3.7
url = https://github.com/kristyhoran/bohra
classifiers =
Programming Language :: Python :: 3.9
Operating System :: OS Independent
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
long_description = file: README.md
long_description_content_type = text/markdown
license_files =
LICENSE.txt
[options]
python_requires = >= 3.8
packages = find:
zip_safe: False
install_requires =
pytest
altair>=5
jinja2
biopython>=1.70
pandas
numpy==1.23.1
psutil
sh
packaging
include_package_data = True
[options.extras_require]
tests =
pytest
flake8
[options.entry_points]
console_scripts =
bohra=bohra.bohra:main
[flake8]
ignore = E203, E266, E501, W503
max-line-length = 100
max-complexity = 18
select = B,C,E,F,W,T4,B9