vtexpy 0.0.0b38__tar.gz → 0.0.0b39__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of vtexpy might be problematic. Click here for more details.
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/.gitignore +3 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/.pre-commit-config.yaml +2 -6
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/Makefile +4 -3
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/PKG-INFO +1 -1
- vtexpy-0.0.0b39/mise.local.toml.sample +2 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/mise.toml +4 -3
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/pyproject.toml +27 -29
- vtexpy-0.0.0b39/uv.lock +866 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/__init__.py +1 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/catalog.py +2 -2
- vtexpy-0.0.0b39/vtex/_api/intelligent_search.py +68 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_constants.py +4 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_dto.py +7 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_vtex.py +7 -0
- vtexpy-0.0.0b38/uv.lock +0 -684
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/.github/CODEOWNERS +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/.github/actions/setup-python/action.yaml +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/.github/workflows/publish.yaml +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/CHANGELOG.md +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/CONTRIBUTING.md +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/LICENSE +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/README.md +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/__init__.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/base.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/conftest.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/integration.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/unit.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/vtex/__init__.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/vtex/api/__init__.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/tests/vtex/test_config.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/__init__.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/base.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/checkout.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/custom.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/license_manager.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/logistics.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/master_data.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/orders.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/payments_gateway.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/pricing.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/promotions_and_taxes.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/types/__init__.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/types/catalog.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/types/generic.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_api/types/license_manager.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_config.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_exceptions.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_logging.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_sentinels.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_types.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/_utils.py +0 -0
- {vtexpy-0.0.0b38 → vtexpy-0.0.0b39}/vtex/py.typed +0 -0
|
@@ -11,16 +11,12 @@ repos:
|
|
|
11
11
|
- id: mixed-line-ending
|
|
12
12
|
- id: trailing-whitespace
|
|
13
13
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
14
|
-
rev: 0.6.
|
|
14
|
+
rev: 0.6.11
|
|
15
15
|
hooks:
|
|
16
16
|
- id: uv-lock
|
|
17
17
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
18
|
-
rev: v0.
|
|
18
|
+
rev: v0.11.2
|
|
19
19
|
hooks:
|
|
20
20
|
- id: ruff
|
|
21
21
|
args: ["--fix"]
|
|
22
22
|
- id: ruff-format
|
|
23
|
-
- repo: https://github.com/crate-ci/typos
|
|
24
|
-
rev: v1.30.0
|
|
25
|
-
hooks:
|
|
26
|
-
- id: typos
|
|
@@ -81,8 +81,8 @@ formatter: ##@Ruff Runs the Ruff formatter on the project
|
|
|
81
81
|
|
|
82
82
|
.PHONY: ruff
|
|
83
83
|
ruff: ##@Ruff Runs both the Ruff linter and formatter on the project
|
|
84
|
-
@$(MAKE)
|
|
85
|
-
@$(MAKE)
|
|
84
|
+
@$(MAKE) linter
|
|
85
|
+
@$(MAKE) formatter
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
# ======================================================================================
|
|
@@ -91,7 +91,8 @@ ruff: ##@Ruff Runs both the Ruff linter and formatter on the project
|
|
|
91
91
|
.PHONY: mypy
|
|
92
92
|
mypy: ##@Mypy Runs the MyPy static type checker on the project
|
|
93
93
|
@echo "Running mypy..."
|
|
94
|
-
@
|
|
94
|
+
@dmypy status > /dev/null 2>&1 || dmypy start
|
|
95
|
+
@dmypy run -- ./
|
|
95
96
|
|
|
96
97
|
|
|
97
98
|
# ======================================================================================
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vtexpy"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.0b39"
|
|
4
4
|
description = "Unofficial VTEX API's Python SDK"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -12,19 +12,19 @@ maintainers = [
|
|
|
12
12
|
]
|
|
13
13
|
keywords = ["vtex", "sdk", "client", "api"]
|
|
14
14
|
classifiers = [
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
15
|
+
"Development Status :: 4 - Beta",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Programming Language :: Python",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
"Programming Language :: Python :: 3.13",
|
|
24
|
+
"Operating System :: OS Independent",
|
|
25
|
+
"Topic :: Software Development :: Libraries",
|
|
26
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
27
|
+
"Typing :: Typed",
|
|
28
28
|
]
|
|
29
29
|
requires-python = ">=3.10,<3.14"
|
|
30
30
|
dependencies = [
|
|
@@ -36,22 +36,24 @@ dependencies = [
|
|
|
36
36
|
"typing-extensions (>=3.10,<5.0); python_version < '3.12'",
|
|
37
37
|
]
|
|
38
38
|
|
|
39
|
+
[dependency-groups]
|
|
40
|
+
dev = [
|
|
41
|
+
"ipdb",
|
|
42
|
+
"mock",
|
|
43
|
+
"mypy",
|
|
44
|
+
"pre-commit",
|
|
45
|
+
"pytest",
|
|
46
|
+
"pytest-mock",
|
|
47
|
+
"ruff",
|
|
48
|
+
"types-cachetools",
|
|
49
|
+
"types-python-dateutil",
|
|
50
|
+
]
|
|
51
|
+
|
|
39
52
|
[project.urls]
|
|
40
53
|
homepage = "https://github.com/lvieirajr/vtex-python"
|
|
41
54
|
repository = "https://github.com/lvieirajr/vtex-python"
|
|
42
55
|
documentation = "https://github.com/lvieirajr/vtex-python"
|
|
43
56
|
|
|
44
|
-
[dependency-groups]
|
|
45
|
-
dev = [
|
|
46
|
-
"ipdb",
|
|
47
|
-
"mock",
|
|
48
|
-
"mypy",
|
|
49
|
-
"pytest",
|
|
50
|
-
"pytest-mock",
|
|
51
|
-
"types-cachetools",
|
|
52
|
-
"types-python-dateutil",
|
|
53
|
-
]
|
|
54
|
-
|
|
55
57
|
[build-system]
|
|
56
58
|
requires = ["hatchling"]
|
|
57
59
|
build-backend = "hatchling.build"
|
|
@@ -82,10 +84,6 @@ target-version = "py313"
|
|
|
82
84
|
[tool.ruff.format]
|
|
83
85
|
preview = true
|
|
84
86
|
|
|
85
|
-
[tool.ruff.lint]
|
|
86
|
-
ignore = ["COM812", "ISC001"]
|
|
87
|
-
select = ["B", "C4", "C90", "COM", "E", "EXE", "F", "I", "ISC", "N", "S", "T10", "T20", "W"]
|
|
88
|
-
|
|
89
87
|
[tool.ruff.lint.per-file-ignores]
|
|
90
88
|
"**/__init__.py" = ["F401"]
|
|
91
89
|
"**/tests/*" = ["S101"]
|