-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.25 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
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["bb", "utility"]
[project]
name = "Butterfly-Backup"
version = "1.16.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 = "matteo.guadrini@hotmail.it" }]
maintainers = [
{ name = "Matteo Guadrini", email = "matteo.guadrini@hotmail.it" },
]
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==2020.7.3", "fabric==3.2.2"]
[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"