Skip to content

Commit

Permalink
CL-16 Refactor and add S3 upload (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
keosak authored Aug 22, 2023
1 parent 7f70ec9 commit 9624815
Show file tree
Hide file tree
Showing 6 changed files with 549 additions and 309 deletions.
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"tamasfe.even-better-toml",
"ms-python.python",
"ms-python.black-formatter"
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"python.analysis.typeCheckingMode": "basic",
"python.testing.pytestEnabled": true
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This tool allows you [upload map data](https://documentation.maptiler.com/hc/en-

## Requirements

- Python *version >= 3.6*
- Python *version >= 3.8*
- pip
- venv

Expand Down
489 changes: 271 additions & 218 deletions poetry.lock

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ readme = "README.md"
maptiler-cloud = "maptiler.cloud_cli:cli"

[tool.poetry.dependencies]
python = ">=3.6"
click = "^8.0.1"
requests = "^2.26.0"
python = ">=3.8"
click = "^8.0"
requests = "^2.26"

[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
requests-mock = "^1.9.3"

[tool.poetry.group.dev.dependencies]
black = "23.3.0"
pytest = "^7.0"
requests-mock = "^1.10"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
Loading

0 comments on commit 9624815

Please sign in to comment.