-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 834 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "australian-postcodes"
version = "2026.5.27"
description = "Australian postcode + suburb lookup, with bundled data"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "schappim" }]
keywords = ["australia", "postcode", "postcodes", "suburb", "zipcode"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Database",
]
[project.urls]
Homepage = "https://github.com/schappim/australian-postcodes"
[project.scripts]
australian-postcodes = "australian_postcodes.cli:main"
[tool.setuptools.packages.find]
include = ["australian_postcodes*"]
[tool.setuptools.package-data]
australian_postcodes = ["data/australian-postcodes.csv"]