-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 1.7 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "pxwebpy"
dynamic = ["version"]
description = "Client library for the PxWeb API to easily load data into a DataFrame."
license = "MIT"
repository = "https://github.com/stefur/pxwebpy/"
keywords = ["pxweb", "statistics", "dataframes", "pandas", "polars"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
authors = [
{ name = "Stefan Furne", email = "stefan@furne.net" }
]
dependencies = [
"packaging>=26.0",
"requests>=2.33.1",
"requests-cache>=1.3.1",
]
readme = "README.md"
requires-python = ">= 3.10"
[project.urls]
Repository = "https://github.com/stefur/pxwebpy"
Documentation = "https://stefur.github.io/pxwebpy"
[build-system]
requires = ["hatchling", "versioningit"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "versioningit"
[tool.hatch.build]
artifacts = ["src/pxweb/_version.py"]
[tool.hatch.build.targets.wheel]
packages = ["src/pxweb"]
[tool.versioningit.write]
file = "src/pxweb/_version.py"
[tool.ruff]
line-length = 80
fix = true
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
extend-select = ["I"]
[dependency-groups]
dev = [
"nox>=2026.02.09",
"nox-uv>=0.6.3",
"pandas>=2.2.3",
"pandas-stubs>=2.2.2.240807",
"polars>=1.19.0",
"pre-commit>=4.4.0",
"pyarrow>=22.0.0",
"pytest>=8.3.4",
"pytest-cov>=6.2.1",
"quartodoc>=0.11.1",
"rich>=14.1.0",
"syrupy>=4.8.0",
"types-requests>=2.32.0.20241016",
]