-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.64 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
64
65
66
67
68
69
70
71
72
73
[project]
name = "websnap"
version = "4.0.0"
description = "Copies files retrieved from an API to an S3 bucket or a local machine."
authors = [
{name = "Rebecca Buchholz"},
]
maintainers = [
{name = "EnviDat", email="envidat@wsl.ch"}
]
dependencies = [
"pydantic>=2.13.2",
"boto3>=1.42.91",
"requests>=2.33.1",
]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Topic :: Internet",
"Topic :: System",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Archiving :: Mirroring",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators"
]
readme = "README.md"
license = {text = "MIT"}
keywords = [
"S3",
"Boto3",
"boto3",
"API",
"backup",
"AWS",
"AWS SDK",
"AWS SDK for Python"
]
[project.urls]
documentation = "https://github.com/EnviDat/websnap/blob/main/README.md"
repository = "https://github.com/EnviDat/websnap"
changelog = "https://github.com/EnviDat/websnap/blob/main/CHANGELOG.md"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.scripts]
websnap-cli = "websnap.websnap_cli:main"
[tool.pdm.scripts]
websnap-cli = {call = "websnap.websnap_cli:main"}
[tool.coverage.run]
omit = [
"*/tests/*"
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"tox>=4.53.0",
"tox-pdm>=0.7.2",
"ruff>=0.15.11",
"pytest-cov>=7.1.0",
]