jing 0.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.
jing-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.1
2
+ Name: jing
3
+ Version: 0.0.1
4
+ Requires-Dist: requests
5
+ Requires-Dist: importlib-metadata; python_version < "3.10"
@@ -0,0 +1,5 @@
1
+ # he/__init__.py
2
+ from .module1 import my_function
3
+ from .module2 import MyClass
4
+
5
+ __version__ = "0.1.0"
@@ -0,0 +1,3 @@
1
+ # mypackage/module1.py
2
+ def my_function():
3
+ print("This is a function from module1!")
@@ -0,0 +1,7 @@
1
+ # mypackage/module2.py
2
+ class MyClass:
3
+ def __init__(self, name):
4
+ self.name = name
5
+
6
+ def greet(self):
7
+ print(f"Hello, {self.name}!")
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.1
2
+ Name: jing
3
+ Version: 0.0.1
4
+ Requires-Dist: requests
5
+ Requires-Dist: importlib-metadata; python_version < "3.10"
@@ -0,0 +1,9 @@
1
+ pyproject.toml
2
+ jing/__init__.py
3
+ jing/module1.py
4
+ jing/module2.py
5
+ jing.egg-info/PKG-INFO
6
+ jing.egg-info/SOURCES.txt
7
+ jing.egg-info/dependency_links.txt
8
+ jing.egg-info/requires.txt
9
+ jing.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ requests
2
+
3
+ [:python_version < "3.10"]
4
+ importlib-metadata
@@ -0,0 +1 @@
1
+ jing
@@ -0,0 +1,12 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+
6
+ [project]
7
+ name = "jing"
8
+ version = "0.0.1"
9
+ dependencies = [
10
+ "requests",
11
+ 'importlib-metadata; python_version<"3.10"',
12
+ ]
jing-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+