Dependency setup

- Poetry for maintaining python server executable
- Reroll Jetbrains configs
- Update readme
- Add launcher build pipeline
This commit is contained in:
MrTeferi
2022-11-21 19:58:20 -06:00
parent a4321f4ffe
commit 6027eb7737
12 changed files with 319 additions and 23 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[tool.poetry]
name = "cardconjurer"
version = "0.1.0"
description = "Run card conjurer locally, credit to Kyle for original repo, remember the legends."
authors = ["MrTeferi <freethoughtleft@gmail.com>"]
license = "GPL3"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
pyinstaller = "5.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"