-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.17 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
[build-system]
requires = ["uv_build>=0.9.6,<0.13.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "pgn_to_sqlite"
module-root = ""
[project]
name = "pgn_to_sqlite"
version="2.4.0"
requires-python = ">=3.10"
authors = [{name = "Ricky White", email = "ricky@rickywhite.net"}]
description = "Pull your Chess games from chess.com and lichess.org into a sqlite3 database."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"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",
]
dependencies = [
"berserk>=0.14.0",
"click>=8.3.0",
"requests>=2.32.5",
"rich>=13.0.0",
]
[project.scripts]
pgn-to-sqlite = "pgn_to_sqlite.cli:cli"
[project.urls]
Home = "https://github.com/EndlessTrax/pgn-to-sqlite"
Documentation = "https://github.com/EndlessTrax/pgn-to-sqlite/blob/master/README.md"
Issues = "https://github.com/EndlessTrax/pgn-to-sqlite/issues"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"ruff",
]