-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.13 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
[project]
name = "lichess-api"
version = "0.5.0"
description = "A simple Python wrapper for Lichess API"
authors = [{ name = "GameRoMan", email = "dev@rman.dev" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
keywords = ["lichess", "chess", "berserk", "bot", "api", "tools"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pydantic>=2.12.4",
"requests>=2.32.5",
]
[project.urls]
Source = "https://github.com/lichess-api/python"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.format]
preview = true
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.taskipy.tasks]
clean = "python -c \"import shutil; shutil.rmtree('dist', ignore_errors=True)\""
build = "task clean && uv build"
publish = "uv publish"
release = "uv build && uv publish"
format = "uv run ruff format ."
test = "uv run pytest"
[dependency-groups]
dev = ["pytest>=9.0.1", "ruff>=0.14.7"]