-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.86 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
[project]
name = "berserk"
version = "0.14.1.dev0"
description = "Python client for the lichess API"
authors = [
{name = "Lichess", email = "contact@lichess.org"}
]
license = {text = "GPL-3.0-or-later"}
readme = "README.rst"
requires-python = ">=3.10"
keywords = ["lichess", "chess", "api", "client"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'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',
]
# by default files declared in .gitignore are excluded
include = ["CHANGELOG.rst", "LICENSE", "docs", "berserk/py.typed"]
dependencies = [
"requests>=2.28.2",
"ndjson>=0.3.1",
"python-dateutil>=2.8.2",
"deprecated>=1.2.14",
"typing-extensions>=4.7.1",
]
[project.urls]
Homepage = "https://github.com/lichess-org/berserk"
Documentation = "https://lichess-org.github.io/berserk/"
Repository = "https://github.com/lichess-org/berserk"
Changelog = "https://lichess-org.github.io/berserk/changelog.html"
"Issue Tracker" = "https://github.com/lichess-org/berserk/issues"
"Discord Server" = "https://discord.gg/lichess"
[dependency-groups]
dev = [
"pytest>=7",
"sphinx>=6.1.3",
"sphinx-rtd-theme>=1.2.0",
"pyright>=1",
"requests-mock>=1.11.0",
"pytest-recording>=0.12.2",
"vcrpy>=4.4.0",
"pydantic>=2.7.2",
"ruff>=0.14.5",
"watchdog>=6.0.0",
]
[tool.pyright]
typeCheckingMode = "strict"
[tool.ruff.format]
docstring-code-format = true
[build-system]
requires = ["uv_build>=0.9.10,<0.11.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""