-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (74 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
77 lines (74 loc) · 2.17 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
74
75
76
77
[project]
name = "app"
version = "0.1.0"
description = "API and ingester for weather station data"
readme = "README.md"
authors = [ { name = "Quercus Hamlin", email = "quercus.hamlin@outlook.com"}]
requires-python = ">=3.12,<4.0"
dependencies = [
"fastapi[standard]<1.0.0,>=0.114.2",
"pandas>2.0.0",
"psycopg[binary]<4.0.0,>=3.1.13",
"pydantic>2.0",
"pyprojroot==0.3.0",
"sqlalchemy",
]
[tool.uv]
dev-dependencies = [
"pre-commit==4.2.0",
"ruff==0.11.13",
"pytest<8.0.0,>=7.4.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
exclude = ["LICENSE"]
lint.select = [
"F", # Errors detected by Pyflakes
"E", # Error detected by Pycodestyle
"W", # Warning detected by Pycodestyle
"I", # isort
"D", # pydocstyle
"B", # flake8-bugbear
"Q", # flake8-quotes
"TID", # flake8-tidy-imports
"C4", # flake8-comprehensions
"BLE", # flake8-blind-except
"UP", # pyupgrade
"RUF100", # Report unused noqa directives
]
lint.ignore = [
# line too long -> we accept long comment lines; black gets rid of long code lines
"E501",
# Do not assign a lambda expression, use a def -> lambda expression assignments are convenient
"E731",
# allow I, O, l as variable names -> I is the identity matrix
"E741",
# Missing docstring in public package
"D104",
# Missing docstring in public module
"D100",
# Missing docstring in __init__
"D107",
# Errors from function calls in argument defaults. These are fine when the result is immutable.
"B008",
# __magic__ methods are are often self-explanatory, allow missing docstrings
"D105",
# first line should end with a period [Bug: doesn't work with single-line docstrings]
"D400",
# First line should be in imperative mood; try rephrasing
"D401",
## Disable one in each pair of mutually incompatible rules
# We don't want a blank line before a class docstring
"D203",
# We want docstrings to start immediately after the opening triple quote
"D213",
# Bare except okay for passing
"E722",
# Okay to skip docstrings for test
"D103",
# Okay to not end line with puncutation
"D415"
]