-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.63 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
57
[project]
name = "dotbackup"
dynamic = ["version"]
authors = [
{ name="Jax Young", email="[email protected]" },
]
description = """\
YAML config based backup utility. Easy to use yet flexible. With a primary focus on \
dotfile backup & setup, but not limited to dotfiles.\
"""
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["ruamel.yaml"]
keywords = ["YAML", "dotfiles", "backup"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Archiving :: Backup",
"Intended Audience :: Developers",
]
[project.scripts]
dotbackup = "dotbackup:dotbackup"
dotsetup = "dotbackup:dotsetup"
[project.urls]
Homepage = "https://github.com/jaxvanyang/dotbackup"
Source = "https://github.com/jaxvanyang/dotbackup"
Repository = "https://github.com/jaxvanyang/dotbackup.git"
Issues = "https://github.com/jaxvanyang/dotbackup/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/dotbackup.py"
[tool.hatch.build.targets.wheel]
packages = ["src/dotbackup.py"]
[tool.hatch.build.targets.wheel.hooks.custom]
[tool.hatch.build.targets.wheel.shared-data]
"dotbackup.1" = "share/man/man1/dotbackup.1"
"dotsetup.1" = "share/man/man1/dotsetup.1"
[tool.pytest.ini_options]
pythonpath = ["src", "tests"]