Skip to content

Commit

Permalink
Add submodules to pyproject.toml (google#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
sydp authored Mar 30, 2024
1 parent e810c51 commit 32c7b36
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dfindexeddb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
# limitations under the License.
"""Version information for dfIndexeddb."""

__version__ = "20240331"

__version__ = "20240331a"


def GetVersion():
Expand Down
11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dfindexeddb"
version = "20240331"
version = "20240331a"
requires-python = ">=3.8"
description = "dfindexeddb is an experimental Python tool for performing digital forensic analysis of IndexedDB and leveldb files."
license = {file = "LICENSE"}
Expand All @@ -27,7 +27,14 @@ dfindexeddb = "dfindexeddb.indexeddb.cli:App"
dfleveldb = "dfindexeddb.leveldb.cli:App"

[tool.setuptools]
packages = ["dfindexeddb", "dfindexeddb.indexeddb", "dfindexeddb.leveldb"]
packages = [
"dfindexeddb",
"dfindexeddb.indexeddb",
"dfindexeddb.indexeddb.chromium",
"dfindexeddb.indexeddb.firefox",
"dfindexeddb.indexeddb.safari",
"dfindexeddb.leveldb",
]

[project.urls]
Homepage = "https://github.com/google/dfindexeddb"
Expand Down

0 comments on commit 32c7b36

Please sign in to comment.