-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.14 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pgn_to_sqlite"
version="2.2.0"
requires-python = ">=3.9"
authors = [{name = "Ricky White", email = "[email protected]"}]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"berserk==0.13.2",
"click==8.1.8",
"requests==2.32.3"
]
[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"
[project.scripts]
pgn-to-sqlite = "pgn_to_sqlite.cli:cli"
[tool.uv]
dev-dependencies = [
"exceptiongroup>=1.2.2",
"flit>=3.10.0",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.7.2",
]