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