-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (22 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
27 lines (22 loc) · 818 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
[tool.poetry]
name = "sqlite3-local-backups"
version = "0.2.0"
description = "Automated backups for Sqlite3 production databases."
authors = ["Rafael Oliveira <olirafa@proton.me>"]
license = "The Unlicense"
readme = "README.md"
packages = [{ include = "sqlite_local_backups", from = "src" }]
[tool.poetry.dependencies]
python = "^3.12"
click = "^8.1.7"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev.dependencies]
commitizen = "^3.29.0"
ruff = "^0.6.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
create-backup = "sqlite_local_backups.create_backup:create_backup"
create-folder-structure = "sqlite_local_backups.create_folder_structure:create_folder_structure"
delete-old-backups = "sqlite_local_backups.delete_old_backups:delete_old_backups"