-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·40 lines (35 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
executable file
·40 lines (35 loc) · 868 Bytes
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
# pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "avrc"
version = "0.1.0"
description = "AVrC (Aggregated Gut Viral Catalogue) toolkit for downloading and filtering viral sequences"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Alise Ponsero", email = "alise.ponsero@quadram.ac.uk" }
]
dependencies = [
"click>=8.0.0",
"pandas>=1.3.0",
"requests>=2.25.0",
"tqdm>=4.62.0",
"urllib3>=2.0.0"
]
[project.scripts]
avrc = "avrc.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/avrc"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "--cov=avrc --cov-report=term-missing"
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"pytest-timeout>=2.1.0"
]