-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "auto_remote_sync"
authors = [
{ name="Avi Alkalay", email="[email protected]" },
]
description = "Automate execution of various rsync commands based on profiles defined on a YAML configuration file"
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["jinja2","pyyaml"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Recovery Tools"
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "autorsync.__version__"}
[project.scripts]
autorsync = "autorsync.__main__:main"
[project.urls]
"Homepage" = "https://github.com/avibrazil/autorsync"
Source = "https://github.com/avibrazil/autorsync"
Issues = "https://github.com/avibrazil/autorsync/issues/new/choose"
Pypi = "https://pypi.org/project/auto-remote-sync"