-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
33 lines (30 loc) · 918 Bytes
/
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
[tool.poetry]
name = "cardio"
version = "0.1.0"
description = "Cardio is an open-source, community-driven, roguelike, deck-building card game written in Python."
authors = ["ymyke"]
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/ymyke/cardio"
homepage = "https://github.com/ymyke/cardio"
documentation = "https://ymyke.github.io/cardio"
keywords = ["python", "game", "card", "roguelike", "deck-building", "asciimatics"]
[tool.poetry.dependencies]
python = "^3.9"
asciimatics = "^1.14"
openai = "^0.27" # Used by the card generator
platformdirs = "^3.5.1"
toml = "^0.10.2"
ordered-set = "^4.1.0"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
ipykernel = "^6.19.2"
pytest = "^7.2.0"
pdbpp = "^0.10.3"
hypothesis = "^6.61.0"
pytest-mock = "^3.10.0"
pandas = "^2.0.2"
seaborn = "^0.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"