|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=69", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "wigle-ssid-search" |
| 7 | +version = "0.1.0" |
| 8 | +description = "Command-line tool for querying the WiGLE API for SSIDs and exporting results as JSON or KML." |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.7" |
| 11 | +license = { text = "MIT" } |
| 12 | +authors = [ |
| 13 | + { name = "Defensive Origins", email = "[email protected]" } |
| 14 | +] |
| 15 | +keywords = [ |
| 16 | + "wigle", |
| 17 | + "wifi", |
| 18 | + "wireless", |
| 19 | + "ssid", |
| 20 | + "kml", |
| 21 | + "json", |
| 22 | + "mapping", |
| 23 | + "geolocation" |
| 24 | +] |
| 25 | +classifiers = [ |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3 :: Only", |
| 29 | + "Programming Language :: Python :: 3.7", |
| 30 | + "Programming Language :: Python :: 3.8", |
| 31 | + "Programming Language :: Python :: 3.9", |
| 32 | + "Programming Language :: Python :: 3.10", |
| 33 | + "Programming Language :: Python :: 3.11", |
| 34 | + "Programming Language :: Python :: 3.12", |
| 35 | + "License :: OSI Approved :: MIT License", |
| 36 | + "Operating System :: OS Independent", |
| 37 | + "Environment :: Console", |
| 38 | + "Topic :: Internet", |
| 39 | + "Topic :: Utilities", |
| 40 | + "Topic :: Scientific/Engineering :: GIS" |
| 41 | +] |
| 42 | + |
| 43 | +# Adjust this list after checking WigleSearch.py imports. |
| 44 | +dependencies = [ |
| 45 | + "requests>=2.0.0" |
| 46 | +] |
| 47 | + |
| 48 | +[project.urls] |
| 49 | +Homepage = "https://github.com/DefensiveOrigins/WigleSSIDSearch" |
| 50 | +Source = "https://github.com/DefensiveOrigins/WigleSSIDSearch" |
| 51 | +Issues = "https://github.com/DefensiveOrigins/WigleSSIDSearch/issues" |
| 52 | + |
| 53 | +[project.scripts] |
| 54 | +# This is what users will run: `wigle-ssid-search ...` |
| 55 | +wigle-ssid-search = "WigleSearch:main" |
| 56 | + |
| 57 | +[tool.setuptools] |
| 58 | +# Single-module project — no package dir, just WigleSearch.py |
| 59 | +py-modules = ["WigleSearch"] |
0 commit comments