-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (76 loc) · 1.75 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "opentimes"
version = "0.0.1"
description = "Free travel times between U.S. Census geographies"
keywords = [
"accessibility",
"spatial access",
"travel times",
"travel time estimation"
]
authors = [
{name = "Dan Snow", email = "info@opentimes.org"}
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"requests>=2.32.3"
]
[project.urls]
repository = "https://github.com/dfsnow/opentimes"
homepage = "https://opentimes.org"
[project.optional-dependencies]
data = [
"duckdb==1.1.2",
"dvc[s3]==3.55.2",
"geopandas[all]==1.0.1",
"pandas==2.2.3",
"pyarrow==17.0.0",
"pyyaml==6.0.2",
"requests==2.32.3"
]
site = [
"boto3==1.35.35",
"duckdb==1.1.2",
"jinja2==3.0.3",
"pyyaml==6.0.2",
"requests==2.32.3"
]
dev = [
"setuptools>=61.0",
"pandas-stubs>=2.2.3.241009",
"pre-commit>=4.0.1",
"pytest>=7.3.0",
"pytest-cov>=4.1.0",
"types-PyYAML>=6.0.12.20240917",
"types-requests>=2.32.0.20241016"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["opentimes"]
[tool.pyright]
# Let ruff handle these
reportUnusedImport = false
reportUndefinedVariable = false
[tool.ruff]
line-length = 79
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]