-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to use pyproject.toml and updated pylintrc to version 3.0
- Loading branch information
1 parent
d149aff
commit 1ced24c
Showing
14 changed files
with
214 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Read the Docs configuration file for Sphinx projects | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.12" | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
fail_on_warning: false | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
certifi >= 2023.11.17 | ||
docutils | ||
Markdown | ||
recommonmark | ||
sphinx >= 4.1.0, < 5.2.0 | ||
sphinx >= 4.1.0 | ||
sphinx-markdown-tables | ||
sphinx-rtd-theme >= 0.5.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
pip >= 7.0.0 | ||
PyYAML >= 3.10 | ||
acstore >= 20230101 | ||
artifacts >= 20220219 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,64 @@ | ||
[metadata] | ||
license_files = LICENSE | ||
name = winregrc | ||
version = 20231228 | ||
description = Windows Registry resources (winregrc) | ||
long_description = winregrc is a Python module part of winreg-kb to allow reuse of Windows Registry resources. | ||
long_description_content_type = text/plain | ||
url = https://github.com/libyal/winreg-kb | ||
maintainer = Joachim Metz | ||
maintainer_email = [email protected] | ||
license = Apache License, Version 2.0 | ||
license_files = | ||
ACKNOWLEDGEMENTS | ||
AUTHORS | ||
LICENSE | ||
README | ||
classifiers = | ||
Development Status :: 2 - Pre-Alpha | ||
Programming Language :: Python | ||
|
||
[options] | ||
install_requires = file:requirements.txt | ||
package_dir = | ||
winregrc = winregrc | ||
packages = find: | ||
python_requires = >=3.7 | ||
scripts = | ||
scripts/appcompatcache.py | ||
scripts/application_identifiers.py | ||
scripts/cached_credentials.py | ||
scripts/catalog.py | ||
scripts/environment_variables.py | ||
scripts/eventlog_providers.py | ||
scripts/knownfolders.py | ||
scripts/mounted_devices.py | ||
scripts/mru.py | ||
scripts/msie_zone_info.py | ||
scripts/profiles.py | ||
scripts/programscache.py | ||
scripts/sam.py | ||
scripts/services.py | ||
scripts/shellfolders.py | ||
scripts/srum_extensions.py | ||
scripts/sysinfo.py | ||
scripts/syskey.py | ||
scripts/task_cache.py | ||
scripts/time_zones.py | ||
scripts/type_libraries.py | ||
scripts/usbstor.py | ||
scripts/userassist.py | ||
|
||
[options.package_data] | ||
winregrc = | ||
*.yaml | ||
|
||
[options.packages.find] | ||
exclude = | ||
docs | ||
tests | ||
tests.* | ||
utils | ||
where = . | ||
|
||
[sdist] | ||
template = MANIFEST.in | ||
|
@@ -12,52 +71,53 @@ manifest = MANIFEST.test_data | |
[bdist_rpm] | ||
release = 1 | ||
packager = Joachim Metz <[email protected]> | ||
doc_files = ACKNOWLEDGEMENTS | ||
AUTHORS | ||
LICENSE | ||
README | ||
doc_files = | ||
ACKNOWLEDGEMENTS | ||
AUTHORS | ||
LICENSE | ||
README | ||
build_requires = python3-setuptools | ||
requires = libbde-python3 >= 20220121 | ||
libcreg-python3 >= 20200725 | ||
libewf-python3 >= 20131210 | ||
libfcrypto-python3 >= 20221229 | ||
libfsapfs-python3 >= 20201107 | ||
libfsext-python3 >= 20220112 | ||
libfsfat-python3 >= 20220816 | ||
libfshfs-python3 >= 20220115 | ||
libfsntfs-python3 >= 20211229 | ||
libfsxfs-python3 >= 20220113 | ||
libfvde-python3 >= 20220121 | ||
libfwnt-python3 >= 20210717 | ||
libfwsi-python3 >= 20150606 | ||
libhmac-python3 >= 20230205 | ||
libluksde-python3 >= 20220121 | ||
libmodi-python3 >= 20210405 | ||
libphdi-python3 >= 20220110 | ||
libqcow-python3 >= 20201213 | ||
libregf-python3 >= 20201002 | ||
libsigscan-python3 >= 20230109 | ||
libsmdev-python3 >= 20140529 | ||
libsmraw-python3 >= 20140612 | ||
libvhdi-python3 >= 20201014 | ||
libvmdk-python3 >= 20140421 | ||
libvsgpt-python3 >= 20211115 | ||
libvshadow-python3 >= 20160109 | ||
libvslvm-python3 >= 20160109 | ||
python3-acstore >= 20230101 | ||
python3-artifacts >= 20220219 | ||
python3-cffi >= 1.9.1 | ||
python3-cryptography >= 2.0.2 | ||
python3-dfdatetime >= 20221112 | ||
python3-dfimagetools >= 20220129 | ||
python3-dfvfs >= 20221224 | ||
python3-dfwinreg >= 20211207 | ||
python3-dtfabric >= 20220219 | ||
python3-idna >= 2.5 | ||
python3-pytsk3 >= 20210419 | ||
python3-pyxattr >= 0.7.2 | ||
python3-pyyaml >= 3.10 | ||
requires = | ||
libbde-python3 >= 20220121 | ||
libcreg-python3 >= 20200725 | ||
libewf-python3 >= 20131210 | ||
libfcrypto-python3 >= 20221229 | ||
libfsapfs-python3 >= 20201107 | ||
libfsext-python3 >= 20220112 | ||
libfsfat-python3 >= 20220816 | ||
libfshfs-python3 >= 20220115 | ||
libfsntfs-python3 >= 20211229 | ||
libfsxfs-python3 >= 20220113 | ||
libfvde-python3 >= 20220121 | ||
libfwnt-python3 >= 20210717 | ||
libfwsi-python3 >= 20150606 | ||
libhmac-python3 >= 20230205 | ||
libluksde-python3 >= 20220121 | ||
libmodi-python3 >= 20210405 | ||
libphdi-python3 >= 20220110 | ||
libqcow-python3 >= 20201213 | ||
libregf-python3 >= 20201002 | ||
libsigscan-python3 >= 20230109 | ||
libsmdev-python3 >= 20140529 | ||
libsmraw-python3 >= 20140612 | ||
libvhdi-python3 >= 20201014 | ||
libvmdk-python3 >= 20140421 | ||
libvsgpt-python3 >= 20211115 | ||
libvshadow-python3 >= 20160109 | ||
libvslvm-python3 >= 20160109 | ||
python3-acstore >= 20230101 | ||
python3-artifacts >= 20220219 | ||
python3-cffi >= 1.9.1 | ||
python3-cryptography >= 2.0.2 | ||
python3-dfdatetime >= 20221112 | ||
python3-dfimagetools >= 20220129 | ||
python3-dfvfs >= 20221224 | ||
python3-dfwinreg >= 20211207 | ||
python3-dtfabric >= 20220219 | ||
python3-idna >= 2.5 | ||
python3-pytsk3 >= 20210419 | ||
python3-pyxattr >= 0.7.2 | ||
python3-pyyaml >= 3.10 | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
|
Oops, something went wrong.