Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
Latest commit
44 lines (38 loc) · 1007 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1007 Bytes
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
[project]
name = "ubiops"
version = "4.14.0"
description = "UbiOps"
authors = [{name = "UbiOps"}]
readme = "README_pypi.md"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
dependencies = [
"certifi>=14.05.14",
"python-dateutil>=2.5.3",
"pyyaml<7.0",
"requests>=2.25.1,<3.0",
"requests_toolbelt==1.0.0",
"schema==0.7.7",
"tqdm>=4.64.1",
]
keywords = ["OpenAPI", "OpenAPI-Generator", "UbiOps"]
[project.urls]
Repository = "https://github.com/UbiOps/client-library-python.git"
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {exclude = ["test", "tests"]}}
include-package-data = true
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # include all pycodestyle errors
"F", # include all pyflakes
"W", # include all pycodestyle warnings
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "E731"]
"*.ipynb" = ["E501"]