vertical-weather 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,12 @@
1
+ Metadata-Version: 2.3
2
+ Name: vertical-weather
3
+ Version: 0.0.1
4
+ Summary: Python client for the Vertical Weather API (placeholder; coming soon)
5
+ Author: Stephen Filios
6
+ Author-email: Stephen Filios <sfilios@byu.net>
7
+ Requires-Python: >=3.14
8
+ Description-Content-Type: text/markdown
9
+
10
+ # Vertical Weather
11
+
12
+ Python client for the Vertical Weather API — wind, temperature and density at any altitude. Coming soon: https://verticalweather.com
@@ -0,0 +1,3 @@
1
+ # Vertical Weather
2
+
3
+ Python client for the Vertical Weather API — wind, temperature and density at any altitude. Coming soon: https://verticalweather.com
@@ -0,0 +1,14 @@
1
+ [project]
2
+ name = "vertical-weather"
3
+ version = "0.0.1"
4
+ description = "Python client for the Vertical Weather API (placeholder; coming soon)"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Stephen Filios", email = "sfilios@byu.net" }
8
+ ]
9
+ requires-python = ">=3.14"
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["uv_build>=0.11.15,<0.12.0"]
14
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from vertical-weather!"
File without changes