polsardp 0.0.1.dev0__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,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: polsardp
3
+ Version: 0.0.1.dev0
4
+ Summary: PolSAR Decomposition Core (Placeholder)
5
+ Author: anandyandrew@126.com
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: polsardp
3
+ Version: 0.0.1.dev0
4
+ Summary: PolSAR Decomposition Core (Placeholder)
5
+ Author: anandyandrew@126.com
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ pyproject.toml
2
+ setup.py
3
+ polsardp.egg-info/PKG-INFO
4
+ polsardp.egg-info/SOURCES.txt
5
+ polsardp.egg-info/dependency_links.txt
6
+ polsardp.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,9 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="polsardp", # 你要占的包名
5
+ version="0.0.1.dev0", # 测试占位版本号
6
+ author="anandyandrew@126.com",
7
+ description="PolSAR Decomposition Core (Placeholder)",
8
+ packages=find_packages(),
9
+ )