-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 1.63 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
74
75
[project]
name = "xAPI-client"
version = "1.0.11"
readme = "README.md"
license = "BSD-3-Clause"
description = "A lightweight, flexible asynchronous API client for Python built on httpx and pydantic"
keywords = [
"api",
"client",
"async",
"httpx",
"pydantic",
"rest",
"api-client",
"python-api-client",
]
authors = [
{ name = "rkohl"}
]
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.0",
"httpx>=0.27",
"loguru>=0.7",
"shortuuid>=1.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Pydantic :: 2",
"Typing :: Typed",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/rkohl/xAPI"
Source = "https://github.com/rkohl/xAPI"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["xapi"]
package-dir = {"xapi" = "src"}
[tool.pyright]
useLibraryCodeForTypes = true
include = ["src"]
exclude = [".cache", "testing", "tests"]
pythonVersion = "3.12"
indentSize = 2
indentStyle = "space"
reportUnusedImport = true
reportUnusedClass = true
reportMissingImports = "error"
reportUnusedFunction = true
[tool.ruff.format]
indent-style = "space"
indent-size = 2
quote-style = "double"
[tool.ruff]
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293']
line-length = 88
indent-width = 2
[tool.ruff.lint]
select = ["I"]