-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (56 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
69 lines (56 loc) · 1.38 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "depot_client"
readme = "README.md"
dynamic = ["version"]
description = "Python client for depot.dev API"
requires-python = ">=3.8"
license = { text = "Apache License 2.0" }
dependencies = [
"grpcio>=1.54.0",
"protobuf>=4.21.0",
"grpcio-tools>=1.54.0"
]
[project.urls]
Issues = "https://github.com/fal-ai/depot-client/issues"
Source = "https://github.com/fal-ai/depot-client"
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0"
]
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["depot_client*"]
namespaces = false
[tool.setuptools.package-data]
depot_client = ["py.typed"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = "test_*.py"
[tool.ruff]
line-length = 88
target-version = "py38"
exclude = ["depot_client/api"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.ruff.lint.isort]
known-first-party = ["depot_client"]