Skip to content

Commit 9624815

Browse files
authored
CL-16 Refactor and add S3 upload (#10)
1 parent 7f70ec9 commit 9624815

File tree

6 files changed

+549
-309
lines changed

6 files changed

+549
-309
lines changed

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"tamasfe.even-better-toml",
4+
"ms-python.python",
5+
"ms-python.black-formatter"
6+
]
7+
}

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"python.analysis.typeCheckingMode": "basic",
3+
"python.testing.pytestEnabled": true
4+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This tool allows you [upload map data](https://documentation.maptiler.com/hc/en-
33

44
## Requirements
55

6-
- Python *version >= 3.6*
6+
- Python *version >= 3.8*
77
- pip
88
- venv
99

poetry.lock

Lines changed: 271 additions & 218 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ readme = "README.md"
1313
maptiler-cloud = "maptiler.cloud_cli:cli"
1414

1515
[tool.poetry.dependencies]
16-
python = ">=3.6"
17-
click = "^8.0.1"
18-
requests = "^2.26.0"
16+
python = ">=3.8"
17+
click = "^8.0"
18+
requests = "^2.26"
1919

20-
[tool.poetry.dev-dependencies]
21-
pytest = "^6.2.5"
22-
requests-mock = "^1.9.3"
20+
21+
[tool.poetry.group.dev.dependencies]
22+
black = "23.3.0"
23+
pytest = "^7.0"
24+
requests-mock = "^1.10"
2325

2426
[build-system]
2527
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)