Skip to content

Commit 367c9a1

Browse files
committed
Auto-bump version to 0.1.1
1 parent fcffd4b commit 367c9a1

File tree

1 file changed

+11
-40
lines changed

1 file changed

+11
-40
lines changed

pyproject.toml

Lines changed: 11 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,30 @@
11
[build-system]
2-
requires = ["setuptools>=69", "wheel"]
2+
requires = [ "setuptools>=69", "wheel",]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "wigle-ssid-search"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "Command-line tool for querying the WiGLE API for SSIDs and exporting results as JSON or KML."
99
readme = "README.md"
1010
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"
4217

43-
# Adjust this list after checking WigleSearch.py imports.
44-
dependencies = [
45-
"requests>=2.0.0"
46-
]
18+
[project.license]
19+
text = "MIT"
4720

4821
[project.urls]
4922
Homepage = "https://github.com/DefensiveOrigins/WigleSSIDSearch"
5023
Source = "https://github.com/DefensiveOrigins/WigleSSIDSearch"
5124
Issues = "https://github.com/DefensiveOrigins/WigleSSIDSearch/issues"
5225

5326
[project.scripts]
54-
# This is what users will run: `wigle-ssid-search ...`
5527
wigle-ssid-search = "WigleSearch:main"
5628

5729
[tool.setuptools]
58-
# Single-module project — no package dir, just WigleSearch.py
59-
py-modules = ["WigleSearch"]
30+
py-modules = [ "WigleSearch",]

0 commit comments

Comments
 (0)