-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1002 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 1002 Bytes
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
[tool.poetry]
name = "BackupPC-Clone"
version = "0.0.0"
description = "A tool for cloning the data of a BackupPC instance"
authors = ["P.R. Water <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/SetBased/BackupPC-Clone"
documentation = "https://backuppc-clone.readthedocs.io"
keywords = ["BackupPC", "clone"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Topic :: System :: Archiving :: Backup',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
python = "^3.13"
cleo = "^2.1.0"
pystratum-backend = "^2.1.0"
[build-system]
requires = ["poetry-core"]
build-common = "poetry.core.masonry.api"
[tool.poetry.scripts]
backuppc-clone = 'backuppc_clone:main'
[tool.setuptools.packages.find]
where = ["backuppc_clone/lib"]
[tool.setuptools.package-data]
mypkg = ["*"]