-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.58 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
[project]
name = "database-backup"
version = "0.3.5"
description = "A CLI tool for backing up databases to cloud storage."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"boto3>=1.34.41",
"click>=8.0.0",
"mysql-connector-python>=8.4.0",
"packaging>=25.0",
"paramiko>=3.4.0",
"python-dotenv>=1.0.0",
]
authors = [
{ name = "Kuldip Satpute" }
]
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"backup", "database", "mysql", "mysqldump", "s3", "cli", "aws"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Database",
"Topic :: System :: Archiving :: Backup",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Environment :: Console",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/magicstack-llp/db-backup"
Repository = "https://github.com/magicstack-llp/db-backup"
Issues = "https://github.com/magicstack-llp/db-backup/issues"
[project.scripts]
db-backup = "db_backup.main:backup_cli"
database-backup = "db_backup.main:backup_cli"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"db_backup",
"db_backup.app",
"db_backup.data",
"db_backup.domain",
"db_backup.interface",
]
package-dir = {"db_backup" = "db-backup"}