|
1 | 1 | [build-system] |
2 | | -requires = ["hatchling>=1.27"] |
| 2 | +requires = [ "hatchling>=1.27",] |
3 | 3 | build-backend = "hatchling.build" |
4 | 4 |
|
5 | 5 | [project] |
6 | 6 | name = "subnethostcount" |
7 | | -version = "0.1.0" |
| 7 | +version = "0.1.3" |
8 | 8 | description = "Count usable IPv4 hosts across CIDR subnets and individual IP addresses." |
9 | 9 | readme = "README.md" |
10 | 10 | 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",] |
28 | 13 | dependencies = [] |
| 14 | +[[project.authors]] |
| 15 | +name = "Defensive Origins" |
| 16 | + |
29 | 17 |
|
30 | 18 | [project.urls] |
31 | 19 | Homepage = "https://github.com/DefensiveOrigins/SubnetHostCount" |
32 | 20 | Source = "https://github.com/DefensiveOrigins/SubnetHostCount" |
33 | 21 | "Issue Tracker" = "https://github.com/DefensiveOrigins/SubnetHostCount/issues" |
34 | 22 |
|
35 | 23 | [project.scripts] |
36 | | -# Primary CLI name |
37 | 24 | subnethostcount = "HostCount:main" |
38 | | - |
39 | | -# Optional alias, if you want it |
40 | 25 | cidr-host-count = "HostCount:main" |
41 | 26 |
|
42 | 27 | [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