11[build-system ]
2- requires = [" hatchling>=1.25.0" ]
2+ requires = [ " hatchling>=1.25.0" , ]
33build-backend = " hatchling.build"
44
55[project ]
66name = " wigle2kml-py"
7- version = " 0.1.0 "
7+ version = " 0.1.1 "
88description = " Convert Wigle API JSON output to KML for Google Earth and other geo tools."
99readme = " README.md"
1010requires-python = " >=3.8"
11- license = { text = " MIT" } # Change if you choose a different license
12- authors = [
13- { name = " Kent Ickler" }
14- ]
15- keywords = [" wigle" , " kml" , " wifi" , " geospatial" , " google-earth" ]
16- classifiers = [
17- " Development Status :: 3 - Alpha" ,
18- " Intended Audience :: Information Technology" ,
19- " Intended Audience :: System Administrators" ,
20- " Topic :: Security" ,
21- " Topic :: Utilities" ,
22- " Programming Language :: Python" ,
23- " Programming Language :: Python :: 3" ,
24- " Programming Language :: Python :: 3 :: Only" ,
25- " Programming Language :: Python :: 3.8" ,
26- " Programming Language :: Python :: 3.9" ,
27- " Programming Language :: Python :: 3.10" ,
28- " Programming Language :: Python :: 3.11" ,
29- ]
11+ keywords = [ " wigle" , " kml" , " wifi" , " geospatial" , " google-earth" ,]
12+ classifiers = [ " Development Status :: 3 - Alpha" , " Intended Audience :: Information Technology" , " Intended Audience :: System Administrators" , " Topic :: Security" , " Topic :: Utilities" , " Programming Language :: Python" , " Programming Language :: Python :: 3" , " Programming Language :: Python :: 3 :: Only" , " Programming Language :: Python :: 3.8" , " Programming Language :: Python :: 3.9" , " Programming Language :: Python :: 3.10" , " Programming Language :: Python :: 3.11" ,]
13+ dependencies = []
14+ [[project .authors ]]
15+ name = " Kent Ickler"
3016
31- # Add any non-stdlib requirements here if needed, e.g.:
32- dependencies = [
33- # "simplekml>=1.3",
34- ]
17+ [project .license ]
18+ text = " MIT"
3519
3620[project .urls ]
3721Homepage = " https://github.com/DefensiveOrigins/Wigle2KML-py"
@@ -42,14 +26,7 @@ Issues = "https://github.com/DefensiveOrigins/Wigle2KML-py/issues"
4226wigle2kml = " wigle2kml:main"
4327
4428[tool .hatch .build .targets .wheel ]
45- # Tell hatchling explicitly what to include since we have a single loose .py file.
46- include = [
47- " wigle2kml.py" ,
48- " README.md" ,
49- ]
29+ include = [ " wigle2kml.py" , " README.md" ,]
5030
5131[tool .hatch .build .targets .sdist ]
52- include = [
53- " wigle2kml.py" ,
54- " README.md" ,
55- ]
32+ include = [ " wigle2kml.py" , " README.md" ,]
0 commit comments