cxppython 0.2.10__tar.gz → 0.2.12__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.
- {cxppython-0.2.10 → cxppython-0.2.12}/PKG-INFO +2 -1
- {cxppython-0.2.10 → cxppython-0.2.12}/README.md +2 -1
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/PKG-INFO +2 -1
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/requires.txt +1 -1
- {cxppython-0.2.10 → cxppython-0.2.12}/setup.py +2 -2
- {cxppython-0.2.10 → cxppython-0.2.12}/LICENSE +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/__init__.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/bittensor/__init__.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/bittensor/synapse.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/core/__init__.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/core/config.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/main.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/__init__.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/__init__.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/console.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/defines.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/format.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/helpers.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/loggingmachine.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/cxplogging/logginsimple.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/__init__.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/mongo_singleton.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/mysql.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/mysql_singleton.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/database/redis.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython/utils/easy_imports.py +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/SOURCES.txt +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/dependency_links.txt +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/cxppython.egg-info/top_level.txt +0 -0
- {cxppython-0.2.10 → cxppython-0.2.12}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cxppython
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.12
|
|
4
4
|
Summary: A python utils package
|
|
5
5
|
Home-page: https://github.com/yourusername/my_package
|
|
6
6
|
Author: cxp
|
|
@@ -21,3 +21,4 @@ License-File: LICENSE
|
|
|
21
21
|
- python setup.py sdist bdist_wheel
|
|
22
22
|
### upload
|
|
23
23
|
- twine upload dist/*
|
|
24
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cxppython
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.12
|
|
4
4
|
Summary: A python utils package
|
|
5
5
|
Home-page: https://github.com/yourusername/my_package
|
|
6
6
|
Author: cxp
|
|
@@ -21,3 +21,4 @@ License-File: LICENSE
|
|
|
21
21
|
- python setup.py sdist bdist_wheel
|
|
22
22
|
### upload
|
|
23
23
|
- twine upload dist/*
|
|
24
|
+
|
|
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as f:
|
|
|
4
4
|
long_description = f.read()
|
|
5
5
|
setup(
|
|
6
6
|
name="cxppython", # 包名
|
|
7
|
-
version="0.2.
|
|
7
|
+
version="0.2.12", # 版本号
|
|
8
8
|
packages=find_packages(exclude=["tests", "tests.*"]), # 自动找到所有包
|
|
9
9
|
description="A python utils package",
|
|
10
10
|
long_description=long_description,
|
|
@@ -25,7 +25,7 @@ setup(
|
|
|
25
25
|
"pydantic>=2.7.0,<3.0.0",
|
|
26
26
|
"cryptography>=43.0.1,<47.0.0",
|
|
27
27
|
"pymongo>=4.12.0,<5.0.0",
|
|
28
|
-
"redis>=6.2.0,<
|
|
28
|
+
"redis>=6.2.0,<8.0.0",
|
|
29
29
|
"aiomysql>=0.2.0,<0.3.0",
|
|
30
30
|
], # 依赖(可选)
|
|
31
31
|
classifiers=[ # 元数据
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|