-
Notifications
You must be signed in to change notification settings - Fork 1
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
c977f49
commit b9110f0
Showing
14 changed files
with
142 additions
and
246 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 @@ | ||
[project] | ||
name: dfkinds | ||
name_description: dfKinds | ||
status: experimental | ||
maintainer: Log2Timeline maintainers <[email protected]> | ||
homepage_url: https://github.com/log2timeline/dfkinds | ||
description_short: Digital Forensics kinds (types and classes). | ||
|
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 +0,0 @@ | ||
pip >= 7.0.0 | ||
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,15 +1,46 @@ | ||
[metadata] | ||
license_files = LICENSE | ||
name = dfkinds | ||
version = 20231228 | ||
description = Digital Forensics kinds (types and classes). | ||
long_description = dfKinds, or Digital Forensics kinds, provides data type and class definitions to provide consistent definitions of entities (or description of things) across different tools. | ||
long_description_content_type = text/plain | ||
url = https://github.com/log2timeline/dfkinds | ||
maintainer = Log2Timeline maintainers | ||
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 = | ||
dfkinds = dfkinds | ||
packages = find: | ||
python_requires = >=3.7 | ||
|
||
[options.packages.find] | ||
exclude = | ||
docs | ||
tests | ||
tests.* | ||
utils | ||
where = . | ||
|
||
[bdist_rpm] | ||
release = 1 | ||
packager = Log2Timeline maintainers <[email protected]> | ||
doc_files = ACKNOWLEDGEMENTS | ||
AUTHORS | ||
LICENSE | ||
README | ||
doc_files = | ||
ACKNOWLEDGEMENTS | ||
AUTHORS | ||
LICENSE | ||
README | ||
build_requires = python3-setuptools | ||
|
||
[bdist_wheel] | ||
universal = 1 | ||
|
Oops, something went wrong.