forked from GamesCrafters/GamesmanPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 821 Bytes
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
[project]
name = "gamesmanpy"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"flask>=3.1.0",
"waitress>=3.0.2",
"duckdb>=1.4.1",
"pandas>=2.3.3",
"indexed_gzip>=1.10.1",
"database",
"games",
"interfaces",
"models",
"server",
"solver",
]
[tool.uv.workspace]
members = [
"database",
"games",
"interfaces",
"models",
"server",
"solver",
]
[tool.uv.sources]
database = { workspace = true }
games = { workspace = true }
interfaces = { workspace = true }
models = { workspace = true }
server = { workspace = true }
solver = { workspace = true }
[tool.hatch.build.targets.wheel]
packages = ["src/server"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"