This repository was archived by the owner on May 1, 2026. It is now read-only.
forked from joergmlpts/imagebackup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (41 loc) · 1.55 KB
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
[project]
name = 'imagebackup'
version = '0.2.1'
authors = [
{ name='joergmlpts', email='joergmlpts@outlook.com' },
]
description = 'Python package to read partclone, partimage and ntfsclone backup images & utility to mount images as virtual partitions.'
readme = 'README.md'
requires-python = '>=3.8'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: 3.13',
'Topic :: System :: Archiving :: Backup',
'Topic :: Utilities'
]
dependencies = ['lz4', 'tqdm', 'pyfuse3', 'zstandard']
keywords = ['partclone', 'partimage', 'ntfsclone', 'image', 'backup']
[project.scripts]
vpartclone = 'imagebackup.main:vpartclone'
vntfsclone = 'imagebackup.main:vntfsclone'
vpartimage = 'imagebackup.main:vpartimage'
[project.urls]
'Documentation' = 'https://imagebackup.readthedocs.org'
'Homepage' = 'https://github.com/joergmlpts/imagebackup'
'Bug Tracker' = 'https://github.com/joergmlpts/imagebackup/issues'
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'