diff --git a/.gitignore b/.gitignore index 4da4542..58a3dfd 100644 --- a/.gitignore +++ b/.gitignore @@ -81,4 +81,4 @@ ENV/ .DS_Store -*.code-workspace \ No newline at end of file +*.code-workspace diff --git a/pyproject.toml b/pyproject.toml index e4424a8..58f4971 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,15 +9,12 @@ requires-python = ">=3.9" description = "dfindexeddb is an experimental Python tool for performing digital forensic analysis of IndexedDB and leveldb files." license = "Apache-2.0" license-files = ["LICENSE"] -authors = [{name = "Syd Pleno", email = "sydp@google.com"}] +authors = [{ name = "Syd Pleno", email = "sydp@google.com" }] maintainers = [ - {name = "dfIndexeddb Developers", email = "dfindexeddb-dev@googlegroups.com"}, + { name = "dfIndexeddb Developers", email = "dfindexeddb-dev@googlegroups.com" }, ] -dependencies = [ - "python-snappy==0.6.1", - "zstd==1.5.5.1", -] -readme = {file = "README.md", content-type = "text/markdown"} +dependencies = ["python-snappy>=0.6.1", "zstd>=1.5.5.1"] +readme = { file = "README.md", content-type = "text/markdown" } classifiers = [ "Development Status :: 3 - Alpha", "Programming Language :: Python", diff --git a/setup.py b/setup.py deleted file mode 100644 index 7bdac75..0000000 --- a/setup.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -Copyright 2024 Google LLC - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - https://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -""" - -from setuptools import setup - -setup()