-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
51 lines (48 loc) · 1.07 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
[project]
name = "agr-blastdb-manager"
version = "0.1.0"
description = ""
authors = [
{name = "Adam Wright", email = ""},
{name = "Paulo Nuin", email = ""},
{name = "Alliance of Genome Resources", email = ""}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"rich>=13.5.2",
"click>=8.1.6",
"requests>=2.31.0",
"tqdm>=4.66.3",
"wget>=3.2",
"pyyaml>=6.0.1",
"boto3>=1.28.46",
"python-dotenv>=1.0.0",
"slack-sdk>=3.23.0",
"numpy>=1.26.4",
"selenium>=4.20.0",
"beautifulsoup4>=4.12.3",
"webdriver-manager>=4.0.2",
]
[project.optional-dependencies]
dev = [
"isort>=5.12.0",
"black>=24.3.0",
"mypy>=1.8.0",
"types-pyyaml>=6.0.12.12",
"types-boto3>=1.0.2",
"ruff>=0.12.8",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.1",
"locust>=2.15.1",
"responses>=0.23.3",
"pillow>=10.0.0",
"psutil>=5.9.0",
"cloudscraper>=1.2.71",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]