-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (46 loc) · 1.54 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cloudtoolbox"
version = "0.5.0"
description = "Toolbox for the cloud."
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Dotz Developers", email = "[email protected]" }]
keywords = ["cloud", "tools", "utilities", "google", "gcp", "amazon", "aws"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.8"
dependencies = []
[project.urls]
Repository = "https://github.com/DotzInc/cloud-toolbox"
[project.optional-dependencies]
amazon = ["boto3"]
google = ["google-cloud-pubsub", "google-cloud-storage"]
all = ["boto3", "google-cloud-pubsub", "google-cloud-storage"]
[tool.ruff]
exclude = [".git", ".venv", ".ruff_cache"]
line-length = 100
indent-width = 4
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "ARG001"]
ignore = ["E402", "E501", "W191", "B904"]
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"