-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
36 lines (30 loc) · 1.11 KB
/
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
34
35
36
[tool.poetry]
name = "idleon-saver"
version = "3.1.4"
description = "Converts Legends of Idleon Steam save data to and from JSON."
authors = ["desophos <[email protected]>"]
readme = "README.md"
repository = "https://github.com/desophos/idleon-saver"
[tool.poetry.dependencies]
python = "~3.9"
plyvel = [
{ version = "^1.4", markers = "sys_platform != 'win32'" },
{ path = "wheels/plyvel-1.4.0-cp39-cp39-win_amd64.whl", python = "~3.9", markers = "sys_platform == 'win32'" },
]
kivy = { extras = ["base"], version = "^2.1" }
chromecontroller = { git = "https://github.com/desophos/ChromeController.git" }
pywin32 = { version = ">=300", markers = "sys_platform == 'win32'" }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = { version = "^22", allow-prereleases = true }
mypy = "~0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
telenium = { git = "https://github.com/desophos/telenium.git" }
[build-system]
requires = ["poetry-core>=1.2.0b1"]
build-backend = "poetry.core.masonry.api"