-
Notifications
You must be signed in to change notification settings - Fork 61
/
pyproject.toml
69 lines (61 loc) · 1.63 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
67
68
69
[tool.poetry]
name = "label-studio-sdk"
version = "1.0.8.dev"
description = ""
readme = "README.md"
authors = []
keywords = []
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
packages = [
{ include = "label_studio_sdk", from = "src"}
]
[project.urls]
Repository = 'https://github.com/HumanSignal/label-studio-sdk'
[tool.poetry.dependencies]
python = "^3.8"
Pillow = ">=10.0.1"
appdirs = ">=1.4.3"
datamodel-code-generator = "0.26.1"
httpx = ">=0.21.2"
ijson = ">=3.2.3"
jsonschema = ">=4.23.0"
lxml = ">=4.2.5"
nltk = "^3.9.1"
numpy = "<2.0.0"
pandas = ">=0.24.0"
pydantic = ">= 1.9.2"
requests = ">=2.22.0"
requests-mock = "1.12.1"
typing_extensions = ">= 4.0.0"
ujson = ">=5.8.0"
xmljson = "0.2.1"
[tool.poetry.dev-dependencies]
mypy = "1.0.1"
pytest = "^7.4.0"
pytest-asyncio = "^0.23.5"
python-dateutil = "^2.9.0"
types-python-dateutil = "^2.9.0.20240316"
[tool.pytest.ini_options]
testpaths = [ "tests" ]
asyncio_mode = "auto"
[tool.mypy]
plugins = ["pydantic.mypy"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"