-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.61 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
70
71
72
73
[build-system]
requires = [
"setuptools>=77.0.3",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
[project]
name = "chesstab"
version = "8.3.dev13"
authors = [
{ name="Roger Marsh", email="roger.marsh@solentware.co.uk" },
]
description = "Database for chess games."
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Board Games",
"Intended Audience :: End Users/Desktop",
"Development Status :: 3 - Alpha",
]
license = "BSD-3-Clause"
license-files = ["LICENCE"]
readme = "README"
dependencies = [
"solentware-base==5.4.dev7",
"solentware-grid==3.0.2",
"pgn-read==2.7.dev0",
"solentware-misc==1.7.2",
"uci-net==1.2.8",
]
[project.urls]
Homepage = "http://www.solentware.co.uk"
Repository = "https://github.com/RogerMarsh/chesstab.git"
"Bug Tracker" = "https://github.com/RogerMarsh/chesstab/issues"
[tool.setuptools]
packages = [
"chesstab",
"chesstab.basecore",
"chesstab.core",
"chesstab.cql",
"chesstab.gui",
"chesstab.help_",
"chesstab.lmdb",
"chesstab.berkeleydb",
"chesstab.db",
"chesstab.db_tkinter",
"chesstab.dpt",
"chesstab.sqlite",
"chesstab.apsw",
"chesstab.unqlite",
"chesstab.vedis",
"chesstab.gnu",
"chesstab.ndbm",
"chesstab.fonts",
"chesstab.tools",
"chesstab.samples",
"chesstab.shared",
]
[tool.setuptools.package-data]
chesstab = [
"help_/*.rst",
"fonts/*.TTF",
"fonts/*.zip",
]