-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.59 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
[project]
name = "chessfluff"
version = "0.0.3"
description = "Application that pulls various stats for a user from chess.com using the public API."
readme = "README.md"
authors = [
{ name = "Jonathan Fox", email = "32023524+jonathanfox5@users.noreply.github.com" }
]
requires-python = ">=3.12"
dependencies = [
"chess>=1.11.2",
"httpx[http2]>=0.28.1",
"openpyxl>=3.1.5",
"pandas>=2.3.3",
"python-dotenv>=1.2.1",
"rich>=14.2.0",
]
classifiers = [
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Education",
]
keywords = [
"chess",
"chess.com",
"api",
]
[project.scripts]
chessfluff = "chessfluff.main:main"
[project.urls]
homepage = "https://github.com/jonathanfox5/chessfluff"
repository = "https://github.com/jonathanfox5/chessfluff"
documentation = "https://github.com/jonathanfox5/chessfluff"
download = "https://github.com/jonathanfox5/chessfluff/releases"
[build-system]
requires = ["uv_build>=0.9.13,<0.10.0"]
build-backend = "uv_build"
[tool.mypy]
disable_error_code = "import-untyped"
[tool.ruff]
line-length = 100
indent-width = 4
target-version = "py313"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
extend-select = ["I"]