-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
60 lines (54 loc) · 1.55 KB
/
pyproject.toml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
build-backend = "maturin"
requires = ["maturin>=1,<2"]
[project]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = []
license = "MIT"
description = "Probably the fastest Python package to convert longitude/latitude to timezone name"
name = "tzfpy"
requires-python = ">=3.9"
maintainers = [{ name = "ringsaturn", email = "[email protected]" }]
keywords = [
"tzf",
"timezone",
"timezone-name",
"timezone-lookup",
"gps",
"gps-coordinates",
"gps-location",
"longitude",
"latitude",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.optional-dependencies]
pytz = ["pytz>=2024.2"]
tzdata = ["tzdata>=2024.2"]
[project.urls]
Documentation = "https://github.com/ringsaturn/tzfpy"
Issues = "https://github.com/ringsaturn/tzfpy/issues"
"Source Code" = "https://github.com/ringsaturn/tzfpy"
[dependency-groups]
dev = [
"ruff==0.8.1",
"citiespy>=0.6.6",
"maturin==1.7.8",
"pytest>=8.3.3",
"pytest-benchmark>=5.1.0",
"pytest-cov>=6.0.0",
"pytest-pretty>=1.2.0",
"pytz>=2024.2",
"tzdata>=2024.2",
"pytest-codspeed>=3.0.0",
]
[tool.maturin]
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
features = ["pyo3/extension-module", "pyo3/generate-import-lib"]