renest 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.
@@ -0,0 +1,15 @@
1
+ # 构建产物
2
+ dist/
3
+ build/
4
+ *.egg-info/
5
+ __pycache__/
6
+ *.py[cod]
7
+
8
+ # 机密 —— 千万别提交
9
+ PyPI-Recovery-Codes-*.txt
10
+ *.pem
11
+ *.key
12
+ .env
13
+
14
+ # 系统文件
15
+ .DS_Store
renest-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: renest
3
+ Version: 0.0.1
4
+ Summary: Placeholder for renest. Real release coming.
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+
8
+ # renest
9
+
10
+ Placeholder for **renest**. Real release coming.
renest-0.0.1/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # renest
2
+
3
+ Placeholder for **renest**. Real release coming.
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "renest"
7
+ version = "0.0.1"
8
+ description = "Placeholder for renest. Real release coming."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+
12
+ [tool.hatch.build.targets.wheel]
13
+ packages = ["src/renest"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"