-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
50 lines (45 loc) · 1.67 KB
/
Copy pathsetup.cfg
File metadata and controls
50 lines (45 loc) · 1.67 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
45
46
47
48
49
50
# This software was developed at the National Institute of Standards
# and Technology by employees of the Federal Government in the course
# of their official duties. Pursuant to Title 17 Section 105 of the
# United States Code, this software is not subject to copyright
# protection within the United States. NIST assumes no responsibility
# whatsoever for its use by other parties, and makes no guarantees,
# expressed or implied, about its quality, reliability, or any other
# characteristic.
#
# We would appreciate acknowledgement if the software is used.
[metadata]
name = gddrescue_mapfile_to_dfxml
version = attr: gddrescue_mapfile_to_dfxml.__version__
author = Alex Nelson
author_email = alexander.nelson@nist.gov
description = Mapping of GNU ddrescue Mapfile to DFXML
license_files = LICENSE.md
#TODO - PyPI will need a differently-written README.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ajnelson-nist/gddrescue_mapfile_to_dfxml
classifiers =
Development Status :: 3 - Alpha
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python :: 3
[options]
include_package_data = true
install_requires =
dfxml
humanfriendly
portion
packages = find:
python_requires = >=3.10
[options.entry_points]
console_scripts =
gddrescue_dfxml_recoverability_dfxml = gddrescue_mapfile_to_dfxml.recoverability_dfxml:main
gddrescue_dfxml_recoverability_report = gddrescue_mapfile_to_dfxml.recoverability_report:main
gddrescue_mapfile_to_dfxml = gddrescue_mapfile_to_dfxml.cli:main
[options.package_data]
gddrescue_mapfile_to_dfxml = py.typed
[flake8]
extend-ignore =
E203
E501