-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 762 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 762 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
[project]
name = "fall-in"
dynamic = ["version"]
description = "헤쳐 모여! (Fall In!) - A strategic card game based on 6 Nimmt! with Korean Air Force theme"
readme = "README.md"
authors = [
{ name = "bnbong", email = "bbbong9@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"pygame-ce>=2.5.0",
"websockets>=14.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"ruff>=0.14.14",
]
[project.scripts]
fall-in = "fall_in.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/fall_in/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/fall_in"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]