-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
67 lines (56 loc) · 1.43 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
61
62
63
64
65
66
67
[project]
name = "autocensus"
version = "2.2.1"
description = "A tool for collecting ACS and geospatial data from the Census API"
authors = [{ name = "Christopher Setzer", email = "[email protected]" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
keywords = ["census", "acs", "api", "data"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
dependencies = [
"geopandas>=1.0.1",
"httpx>=0.28.1",
"nest-asyncio>=1.6.0",
"pandas>=2.2.3",
"platformdirs>=4.3.6",
"pyogrio>=0.10.0",
"shapely>=2.0.7",
"tenacity>=9.0.0",
"typing-extensions>=4.12.2",
"us>=3.2.0",
"yarl>=1.18.3",
]
[project.urls]
Repository = "https://github.com/cmsetzer/autocensus"
[dependency-groups]
dev = [
"pyinstrument>=5.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.9.6",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
omit = ["tests/*"]
[tool.pytest.ini_options]
testpaths = "tests/unit"
filterwarnings = ["ignore::DeprecationWarning", "ignore::FutureWarning"]
[tool.ruff]
line-length = 99
[tool.ruff.lint]
select = ["C90", "D", "E", "F", "I", "PD", "RUF"]
ignore = ["D105", "D107", "D203", "D213", "RUF001"]
[tool.ruff.format]
quote-style = "single"
skip-magic-trailing-comma = true
[tool.ruff.lint.isort]
force-sort-within-sections = true
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.setuptools]
license-files = []