-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.46 KB
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
[project]
name = "mi-pimento"
version = "1.0.2"
readme = "README.md"
license = {text = "Apache Software License 2.0"}
authors = [
{ name = "MGnify team", email = "metagenomics-help@ebi.ac.uk" },
]
keywords = ["bioinformatics", "pipelines", "metagenomics", "primers", "reads", "sequencing"]
description = "A PrIMEr infereNce TOolkit to facilitate large-scale calling of metabarcoding amplicon sequence variants"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"biopython==1.82",
"numpy==1.26.0",
"pandas==2.0.2",
"regex==2023.12.25",
"click==8.1.7",
"pyfastx>=2.2.0",
"rich==13.9.4"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pimento",
"pimento.bin",
"pimento.standard_primers"]
[tool.setuptools.package-data]
"pimento.standard_primers" = ["*"]
[project.scripts]
pimento = "pimento.pimento_cli:cli"
[project.optional-dependencies]
tests = [
"pytest==7.4.0",
"pytest-md==0.2.0",
"pytest-workflow==2.0.1",
"biopython==1.82",
"pandas==2.0.2",
"numpy==1.26.0",
"regex==2023.12.25",
"click==8.1.7",
"pyfastx>=2.2.0",
"rich==13.9.4"
]
dev = [
"mi-pimento[tests]",
"pre-commit==3.8.0",
"black==24.8.0",
"flake8==7.1.1",
"pep8-naming==0.14.1"
]