Skip to content

Commit ab79c0e

Browse files
committed
Sync version from Publish:
1 parent 9ad705b commit ab79c0e

File tree

1 file changed

+8
-27
lines changed

1 file changed

+8
-27
lines changed

pyproject.toml

Lines changed: 8 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,28 @@
11
[build-system]
2-
requires = ["hatchling>=1.27"]
2+
requires = [ "hatchling>=1.27",]
33
build-backend = "hatchling.build"
44

55
[project]
66
name = "subnethostcount"
7-
version = "0.1.0"
7+
version = "0.1.3"
88
description = "Count usable IPv4 hosts across CIDR subnets and individual IP addresses."
99
readme = "README.md"
1010
requires-python = ">=3.8"
11-
authors = [
12-
{ name = "Defensive Origins", email = "[email protected]" }
13-
]
14-
keywords = ["cidr", "subnet", "ipv4", "networking", "host count", "defensive origins"]
15-
classifiers = [
16-
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3 :: Only",
18-
"Programming Language :: Python :: 3.8",
19-
"Programming Language :: Python :: 3.9",
20-
"Programming Language :: Python :: 3.10",
21-
"Programming Language :: Python :: 3.11",
22-
"Programming Language :: Python :: 3.12",
23-
"Environment :: Console",
24-
"Intended Audience :: System Administrators",
25-
"Topic :: System :: Networking",
26-
"Topic :: Utilities"
27-
]
11+
keywords = [ "cidr", "subnet", "ipv4", "networking", "host count", "defensive origins",]
12+
classifiers = [ "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", "Programming Language :: Python :: 3.12", "Environment :: Console", "Intended Audience :: System Administrators", "Topic :: System :: Networking", "Topic :: Utilities",]
2813
dependencies = []
14+
[[project.authors]]
15+
name = "Defensive Origins"
16+
2917

3018
[project.urls]
3119
Homepage = "https://github.com/DefensiveOrigins/SubnetHostCount"
3220
Source = "https://github.com/DefensiveOrigins/SubnetHostCount"
3321
"Issue Tracker" = "https://github.com/DefensiveOrigins/SubnetHostCount/issues"
3422

3523
[project.scripts]
36-
# Primary CLI name
3724
subnethostcount = "HostCount:main"
38-
39-
# Optional alias, if you want it
4025
cidr-host-count = "HostCount:main"
4126

4227
[tool.hatch.build]
43-
# Include the single-module script and the README in the built distributions
44-
include = [
45-
"HostCount.py",
46-
"README.md",
47-
]
28+
include = [ "HostCount.py", "README.md",]

0 commit comments

Comments
 (0)