bscommon 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.
bscommon-0.1/PKG-INFO ADDED
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: bscommon
3
+ Version: 0.1
4
+ Summary: 冰鼠常用操作库
5
+ Author: bs
6
+ Requires-Dist: requests>=2.25
7
+ Requires-Dist: numpy
8
+ Dynamic: author
9
+ Dynamic: requires-dist
10
+ Dynamic: summary
@@ -0,0 +1,3 @@
1
+ # mylib/utils.py
2
+ def greeting(name):
3
+ return f"Hello, {name}!"
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: bscommon
3
+ Version: 0.1
4
+ Summary: 冰鼠常用操作库
5
+ Author: bs
6
+ Requires-Dist: requests>=2.25
7
+ Requires-Dist: numpy
8
+ Dynamic: author
9
+ Dynamic: requires-dist
10
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ bscommon/__init__.py
3
+ bscommon.egg-info/PKG-INFO
4
+ bscommon.egg-info/SOURCES.txt
5
+ bscommon.egg-info/dependency_links.txt
6
+ bscommon.egg-info/requires.txt
7
+ bscommon.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ requests>=2.25
2
+ numpy
@@ -0,0 +1 @@
1
+ bscommon
bscommon-0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
bscommon-0.1/setup.py ADDED
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="bscommon",
5
+ version="0.1",
6
+ packages=find_packages(),
7
+ install_requires=["requests>=2.25", "numpy"],
8
+ author="bs",
9
+ description="冰鼠常用操作库"
10
+ )