-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
105 lines (95 loc) · 1.97 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
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools >=65.0", "wheel >=0.36.2"]
build-backend = "setuptools.build_meta"
[project]
name = "hotbox"
dynamic = ["version"]
readme = "README.md"
license = { text = 'See LICENSE' }
description = "hotbox"
requires-python = ">=3.8"
dependencies = [
"boto3 >=1.20.10",
"fastapi >=0.70.0",
"httpx >=0.21.1",
"gunicorn >=20.1.0",
"jinja2 >=3.0.2",
"orjson >=3.6.4",
"pydantic >=1.8.2",
"pydantic-settings >=0.4.0",
"python-dotenv >=0.19.1",
"python-multipart >=0.0.5",
"rich >=10.12.0",
"typer >=0.4.0",
"uvicorn >=0.15.0",
]
[[project.authors]]
name = "Anthony Corletti"
email = "anthcor@gmail.com"
[project.scripts]
hotbox = "hotbox.cli.main:app"
[project.optional-dependencies]
dev = [
"black >=21.10b0",
"coverage >=6.1.1",
"invoke >=1.6.0",
"mdx-include >=1.4.2",
"mkdocs >=1.4.2",
"mkdocs-material >=9.1.5",
"mypy <1.1.1", # https://github.com/pydantic/pydantic/issues/5190
"packaging >=21.0",
"pre-commit >=2.17.0",
"pytest >=6.2.5",
"pytest-asyncio >=0.20.3",
"pytest-cov >=3.0.0",
"ruff >=0.0.98",
]
[project.urls]
Documentation = "https://github.com/anthonycorletti/hotbox"
[tool.setuptools.dynamic]
version = { attr = "hotbox.__version__" }
[tool.ruff]
line-length = 88
ignore = ["D10"]
include = ["*.py"]
select = ["E", "F", "I"]
target-version = "py310"
extend-ignore = [
"D203",
"D204",
"D213",
"D215",
"D400",
"D404",
"D406",
"D407",
"D408",
"D409",
"D413",
"D415",
]
[tool.black]
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.*_cache
| \.tox
| \.venv
| build
| dist
| __pycache__
)/
'''
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
[tool.coverage.run]
source = ["hotbox", "tests"]
omit = ["*__init__.py"]
parallel = true
[tool.coverage.report]
exclude_lines = ['pragma: no cover', 'raise NotImplementedError']