-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# force the inclusion of the gitignore'd sdk
[tool.hatch.build.targets.sdist]
artifacts = [
"src/aica_api/sdk/sdk/**/*.py",
]
[tool.hatch.build.targets.wheel]
artifacts = [
"src/aica_api/sdk/sdk/**/*.py",
]
[project]
name = "aica_api"
version = "4.0.2"
authors = [{ name = "Enrico Eberhard", email = "enrico@aica.tech" }]
description = "A client utility for the AICA API"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"deprecation ~= 2.1.0",
"python-socketio[client] ~= 5.11.0",
"semver ~= 3.0.2",
# required by the codegen
"httpx>=0.23.0,<0.29.0",
"attrs>=22.2.0",
"python-dateutil ~= 2.8.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/aica-technology/api"
"Bug Tracker" = "https://github.com/aica-technology/api/issues"
[dependency-groups]
dev = [
"openapi-python-client ~= 0.26.2",
"ruff>=0.13.3",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["D212", "D400", "D415", "FA100", "G004"]
[tool.ruff.format]
quote-style = "single"