-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
66 lines (57 loc) · 1.51 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
[tool.poetry]
name = "encord"
version = "0.1.154"
description = "Encord Python SDK Client"
authors = ["Cord Technologies Limited <[email protected]>"]
license = "Apache Software License"
keywords = ["encord"]
packages = [
{ include = "encord" },
]
readme = "README.md"
repository="https://github.com/encord-team/encord-client-python"
documentation="https://python.docs.encord.com/"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
include = ["encord/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
python-dateutil = "^2.8.2"
requests = "^2.25.0"
cryptography = ">=3.4.8"
tqdm = "^4.32.1"
pydantic = ">=1.10.14"
orjson = ">=2"
pycocotools = {version = "^2.0.7", optional = true}
shapely = {version = "^2.0.4", optional = true}
[tool.poetry.extras]
coco = ["pycocotools", "shapely"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
pre-commit = "^3.5.0"
deepdiff = "^6.2.1"
types-requests = "^2.25.0"
mypy = "^1.11.1"
types-python-dateutil = "^2.8.19"
types-tqdm = "^4.32.1"
pyright = "^1.1.374"
numpy = [
{version = "^1.24", python = "<3.12"},
{version = "^1.26", python = ">=3.12"}
]
ruff = "^0.5.7"
[build-system]
requires = ["poetry-core>=1.3.2"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
target-version = "py38"
line-length = 120
[tool.ruff.lint]
extend-select = ["W", "Q", "I"]
[tool.ruff.lint.per-file-ignores]
"encord/*" = ["F401", "E402"]