-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.64 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "opteryx-catalog"
version = "0.4.39"
description = "Opteryx Cloud Catalog"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "joocer", email = "justin.joyce@joocer.com" }
]
license = { file = "LICENSE" }
keywords = ["opteryx", "catalog", "firestore", "gcs"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
urls = { "Homepage" = "https://github.com/mabel-dev/opteryx-catalog" }
requires-python = ">=3.9"
dependencies = [
"google-cloud-firestore==2.*",
"google-cloud-storage==3.*",
"orso==0.0.*",
"opteryx-core==0.6.*",
"pyarrow==23.*",
"requests==2.*"
]
[project.optional-dependencies]
webhooks = [
"google-cloud-tasks>=2.16.0"
]
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools.packages.find]
where = ["."]
[tool.isort]
profile = "black"
extend_skip_glob = ["tests/**"]
skip_gitignore = true
line_length = 100
multi_line_output = 9
force_single_line = true
float_to_top = true
ensure_newline_before_comments = true
[tool.ruff]
line-length = 100
indent-width = 4
target-version = 'py313'
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 100
[tool.pylint.logging]
logging-format-style = "new"