-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (51 loc) · 1.32 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
49
50
51
52
53
54
55
56
[build-system]
requires = [
"hatchling>=1.8.0",
]
build-backend = "hatchling.build"
[project]
requires-python = ">=3.11"
name = "rsyncr"
version = "2024.1921.2416" # version = (lt.tm_year, (10 + lt.tm_mon) * 100 + lt.tm_mday, (10 + lt.tm_hour) * 100 + lt.tm_min)
description = "rsyncr - An enhanced rsync backup wrapper script"
readme = "README.md"
license = "GPL-3.0-or-later" # GNU General Public License v3
authors = [
{ name = "Arne Bachmann", email = "ArneBachmann@users.noreply.github.com" },
]
keywords = [
"UI",
"backup",
"feedback",
"interface",
"rsync",
"safety",
"wrapper",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"appdirs"
, "beartype"
, "chardet"
, "stringdist"
, "typing_extensions"
, "types-appdirs" # dev only
]
[project.scripts]
rsyncr = "rsyncr.rsyncr:main"
[project.urls]
Homepage = "http://github.com/ArneBachmann/rsyncr"
[tool.hatch.version]
path = "rsyncr/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/rsyncr",
]