equal-data 0.0.3__tar.gz → 0.0.4__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.
Files changed (22) hide show
  1. {equal_data-0.0.3 → equal_data-0.0.4}/PKG-INFO +1 -1
  2. {equal_data-0.0.3 → equal_data-0.0.4}/pyproject.toml +2 -2
  3. {equal_data-0.0.3 → equal_data-0.0.4}/src/equal_data/__init__.py +1 -1
  4. {equal_data-0.0.3 → equal_data-0.0.4}/.gitignore +0 -0
  5. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/.gitignore +0 -0
  6. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/.name +0 -0
  7. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/equal-data.iml +0 -0
  8. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/inspectionProfiles/Project_Default.xml +0 -0
  9. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  10. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/misc.xml +0 -0
  11. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/modules.xml +0 -0
  12. {equal_data-0.0.3 → equal_data-0.0.4}/.idea/workspace.xml +0 -0
  13. {equal_data-0.0.3 → equal_data-0.0.4}/LICENSE +0 -0
  14. {equal_data-0.0.3 → equal_data-0.0.4}/README.md +0 -0
  15. {equal_data-0.0.3 → equal_data-0.0.4}/src/__init__.py +0 -0
  16. {equal_data-0.0.3 → equal_data-0.0.4}/src/equal_data/common/__init__.py +0 -0
  17. {equal_data-0.0.3 → equal_data-0.0.4}/src/equal_data/common/conf.py +0 -0
  18. {equal_data-0.0.3 → equal_data-0.0.4}/src/equal_data/core.py +0 -0
  19. {equal_data-0.0.3 → equal_data-0.0.4}/src/equal_data/utils/__init__.py +0 -0
  20. {equal_data-0.0.3 → equal_data-0.0.4}/src/equal_data/utils/common_tools.py +0 -0
  21. {equal_data-0.0.3 → equal_data-0.0.4}/src/test/__init__.py +0 -0
  22. {equal_data-0.0.3 → equal_data-0.0.4}/src/test/t_1.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: equal-data
3
- Version: 0.0.3
3
+ Version: 0.0.4
4
4
  Summary: 金融数据获取 Skill,支持 100+ 个金融数据接口。kjiujing 官方提供的SKILL工具包。
5
5
  Project-URL: Homepage, https://github.com/mocoap-wang/equal-data-skill
6
6
  Project-URL: Documentation, https://readthedocs.org
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "equal-data" # PyPI 上的包名(必须唯一,用连字符)
7
- version = "0.0.3" # 版本号
7
+ version = "0.0.4" # 版本号
8
8
  description = "金融数据获取 Skill,支持 100+ 个金融数据接口。kjiujing 官方提供的SKILL工具包。"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"} # 或 license = {file = "LICENSE"}
@@ -41,4 +41,4 @@ Repository = "https://github.com/mocoap-wang/equal-data-skill.git"
41
41
  Issues = "https://github.com/mocoap-wang/equal-data-skill/issues"
42
42
 
43
43
  [tool.hatch.build.targets.wheel] # 构建配置
44
- packages = ["src/kjj"]
44
+ packages = ["src/equal_data"]
@@ -1,6 +1,6 @@
1
1
  """ 通过请求api 返回最终金融数据"""
2
2
 
3
- __version__ = "0.0.3"
3
+ __version__ = "0.0.4"
4
4
  from .core import (
5
5
  KjjApi
6
6
  )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes