-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (50 loc) · 1009 Bytes
/
pyproject.toml
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
[project]
name = "gisflu"
version = "0.1.9"
description = "Access the GISAID Flu database using Python"
authors = [
{ name = "william", email = "[email protected]" },
]
dependencies = [
"httpx>=0.27.0",
"python-dotenv>=1.0.1",
"pandas>=2.0.3",
"tqdm>=4.66.4",
"stamina>=24.2.0",
]
requires-python = ">=3.10"
readme = "docs/index.md"
[project.urls]
Docs = "https://william-swl.github.io/gisflu"
Github = "https://github.com/william-swl/gisflu"
[project.license]
text = "MIT"
[build-system]
requires = [
"pdm-backend",
]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.build]
excludes = [
"tests/temp/",
]
[tool.pdm.dev-dependencies]
test = [
"pytest>=8.2.2",
]
dev = [
"nox>=2024.4.15",
"ipykernel>=6.29.4",
"mkdocs-material>=9.5.27",
"mkdocstrings[python]>=0.25.1",
"mypy>=1.10.1",
]
[tool.pdm.scripts]
docServe = "mkdocs serve"
docPage = "mkdocs gh-deploy --clean"
[tool.pytest.ini_options]
pythonpath = [
"src",
]