-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
97 lines (87 loc) · 1.61 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
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm>=8",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "lct-web"
authors = [
{name = "Michael Reuter", email = "[email protected]"}
]
description = "Web service for Lunar Club and Lunar Club II information."
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.2",
"uvicorn[standard]==0.31.1",
"pylunar==0.8.0",
"tzdata==2024.2"
]
[project.urls]
Repository = "https://github.com/mareuter/lct-web"
[project.optional-dependencies]
dev = [
"lct-web[lint,test]",
"tox==4.21.2"
]
test = [
"coverage[toml]==7.6.3",
"httpx==0.27.2",
"pytest==8.3.3"
]
lint = [
"pre-commit==4.0.1"
]
[tool.setuptools_scm]
[tool.ruff]
exclude = [
"docs/**",
]
ignore = [
"D104"
]
line-length = 110
select = [
"B",
"D",
"E",
"F",
"I",
"SIM",
"UP",
"W"
]
[tool.ruff.per-file-ignores]
"src/lct_web/__init__.py" = [
"E402",
"F401",
"F403"
]
"tests/**" = [
"D101",
"D102",
"D103",
]
[tool.ruff.isort]
force-sort-within-sections = true
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.pycodestyle]
max-doc-length = 79
[tool.mypy]
plugins = [
"pydantic.mypy"
]
ignore_missing_imports = true