ey-commerce-lib 1.0.0__tar.gz → 1.0.1__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 ey-commerce-lib might be problematic. Click here for more details.

Files changed (32) hide show
  1. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/PKG-INFO +2 -2
  2. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/pyproject.toml +6 -2
  3. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/.gitignore +0 -0
  4. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/.python-version +0 -0
  5. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/README.md +0 -0
  6. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/pytest.ini +0 -0
  7. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/__init__.py +0 -0
  8. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/__init__.py +0 -0
  9. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/constant/__init__.py +0 -0
  10. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/constant/order.py +0 -0
  11. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/exception/__init__.py +0 -0
  12. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/exception/common.py +0 -0
  13. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/main.py +0 -0
  14. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/order.py +0 -0
  15. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/parser/__init__.py +0 -0
  16. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/parser/common.py +0 -0
  17. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/parser/order.py +0 -0
  18. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/parser/purchase.py +0 -0
  19. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/parser/warehouse.py +0 -0
  20. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/schemas/__init__.py +0 -0
  21. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/schemas/common.py +0 -0
  22. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/schemas/order.py +0 -0
  23. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/dxm/schemas/warehouse.py +0 -0
  24. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/py.typed +0 -0
  25. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/utils/__init__.py +0 -0
  26. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/utils/dxm.py +0 -0
  27. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/utils/list_util.py +0 -0
  28. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/src/ey_commerce_lib/utils/str.py +0 -0
  29. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/tests/__init__.py +0 -0
  30. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/tests/dxm/__init__.py +0 -0
  31. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/tests/dxm/test_order.py +0 -0
  32. {ey_commerce_lib-1.0.0 → ey_commerce_lib-1.0.1}/uv.lock +0 -0
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ey-commerce-lib
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: eeyoung电商客户端调用封装
5
5
  Author-email: 饶奇奇 <1124393197@qq.com>
6
- Requires-Python: >=3.13
6
+ Requires-Python: >=3.10
7
7
  Requires-Dist: httpx>=0.28.1
8
8
  Requires-Dist: lxml>=5.3.2
9
9
  Requires-Dist: pydantic>=2.11.3
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
  name = "ey-commerce-lib"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  description = "eeyoung电商客户端调用封装"
5
5
  readme = "README.md"
6
6
  authors = [
7
7
  { name = "饶奇奇", email = "1124393197@qq.com" }
8
8
  ]
9
- requires-python = ">=3.13"
9
+ requires-python = ">=3.10"
10
10
  dependencies = [
11
11
  "pytest-asyncio>=0.26.0",
12
12
  "pytest>=8.3.5",
@@ -18,3 +18,7 @@ dependencies = [
18
18
  [build-system]
19
19
  requires = ["hatchling"]
20
20
  build-backend = "hatchling.build"
21
+
22
+ [pypi]
23
+ username = '__token__'
24
+ password = 'pypi-AgEIcHlwaS5vcmcCJGM0ODMxYjA3LWUwZGEtNDI5MC04ZjFhLWY0NWQ2YjMwMTE3YgACKlszLCIxZmExMDhjZC02MjBjLTQ0ZjQtYmRiYy01ZDc4ZDM0MmY4YzIiXQAABiAX4H1ZB3reItO25PIffe7vOLqyqktJpnevZy_ibdUt6Q'
File without changes