-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (62 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (62 loc) · 1.81 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
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "annotateit-ai"
version = "0.1.0"
description = "Python SDK and command-line client for the AnnotateIt local REST API"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "AnnotateIt AI" }]
keywords = ["annotation", "computer-vision", "dataset", "sdk"]
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Typing :: Typed",
]
dependencies = ["httpx>=0.27,<1"]
[project.urls]
Homepage = "https://annotateit.ai"
Repository = "https://github.com/AnnotateIt-AI/annotateit-python"
Issues = "https://github.com/AnnotateIt-AI/annotateit-python/issues"
[project.scripts]
annotateit = "annotateit_ai.cli:main"
[project.optional-dependencies]
dev = [
"build>=1.2",
"mypy>=1.13",
"pytest>=8",
"pytest-cov>=5",
"ruff>=0.8",
"twine>=6",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
annotateit_ai = ["py.typed", "openapi/*.json"]
[tool.pytest.ini_options]
addopts = "-ra --strict-config --strict-markers"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 120
src = ["src", "tests", "scripts"]
[tool.ruff.lint]
select = ["B", "E", "F", "I", "RUF", "UP"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101"]
[tool.mypy]
python_version = "3.10"
strict = true
packages = ["annotateit_ai"]
mypy_path = "src"