-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 944 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 944 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
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "postal_regex"
version = "1.0.0"
description = "Postal code regex validator"
authors = [
{name="Ankit Gadling", email="ankitgadling2@gmail.com"}
]
readme = "README.md"
license = {text="MIT"}
requires-python = ">=3.10"
dependencies = [
"regex==2025.9.18"
]
[project.scripts]
postal-regex = "postal_regex.cli:main"
[tool.setuptools]
packages = ["postal_regex"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
postal_regex = ["data/*.json"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
[project.optional-dependencies]
pandas = ["pandas>=2.0", "pyarrow>=11.0"]
spark = ["pyspark>=4.0"]
dask = ["dask[complete]>=2025.9.0"]
dataframe = ["pandas>=2.0", "pyarrow>=11.0", "dask[complete]>=2025.9.0"]