-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
35 lines (30 loc) · 1.19 KB
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["bb", "utility"]
[project]
name = "Butterfly-Backup"
version = "1.12.0"
readme = "README.md"
license = {text = "GNU General Public License v3.0"}
keywords = ['backup', 'archive', 'restore', 'rsync', 'catalog', 'list',
'config', 'export', 'mirror', 'incremental', 'differential', 'clone', 'copy']
authors = [{ name = "Matteo Guadrini", email = "[email protected]" }]
maintainers = [
{ name = "Matteo Guadrini", email = "[email protected]" },
]
description = "Butterfly Backup is a simple command line wrapper of rsync for complex task, written in python."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = ["pansi", "fabric"]
[project.scripts]
bb = "bb:main"
[project.urls]
homepage = "https://matteoguadrini.github.io/Butterfly-Backup/'"
documentation = "https://butterfly-backup.readthedocs.io/en/latest/"
changelog = "https://github.com/MatteoGuadrini/Butterfly-Backup/blob/master/CHANGES.md"