diff options
| author | Alex <git@ajschof.me> | 2025-02-18 23:08:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-18 23:08:06 +0000 |
| commit | eb0d30d0235dbadd1d5c385a0a49d4cd8aea021e (patch) | |
| tree | 4970d8999b622998800a99e2922b8639049169d9 /pyproject.toml | |
| parent | 362805c9354dc653442f4e144022cc577ebeb43e (diff) | |
| parent | 20572634aaab2b522128a88449b2a32b6c028fc4 (diff) | |
| download | gdpr-obfuscator-eb0d30d0235dbadd1d5c385a0a49d4cd8aea021e.tar.gz gdpr-obfuscator-eb0d30d0235dbadd1d5c385a0a49d4cd8aea021e.zip | |
Merge pull request #6 from ajschofield/feat/read_s3
implement reading from s3 bucket
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index cc923b9..46114bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "A Python library designed to detect and remove Personally Identif authors = [{ name = "Alex Schofield", email = "git@ajschof.me" }] readme = "README.md" requires-python = ">=3.13" -dependencies = ["tabulate (>=0.9.0,<0.10.0)"] +dependencies = ["tabulate (>=0.9.0,<0.10.0)", "boto3 (>=1.36.22,<2.0.0)"] [tool.poetry] package-mode = false @@ -13,6 +13,7 @@ package-mode = false [tool.poetry.group.dev.dependencies] pytest = "8.3.4" pytest-cov = "^6.0.0" +moto = "^5.0.28" [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] |
