1
0
Fork 0
mirror of synced 2024-05-14 01:22:56 +12:00
Rare/pyproject.toml
2022-07-01 14:31:09 +02:00

37 lines
748 B
TOML

[tool.black]
line-length = 110
target-version = ['py39', 'py310']
include = '\.py$'
force-exclude = '''
/(
| rare/ui
| rare/legendary
| rare/resources
)/
'''
[tool.poetry]
name = "rare"
version = "1.8.9"
description = "A GUI for Legendary"
authors = ["Dummerle"]
license = "GPL3"
readme = "README.md"
repository = "https://github.com/Dummerle/Rare"
[tool.poetry.dependencies]
python = "^3.8"
PyQt5 = "^5.15.7"
requests = "^2.28.1"
QtAwesome = "^1.1.1"
psutil = "^5.9.1"
pypresence = {version="^4.2.1", optional = true}
pywin32 = {version = "^304", markers = "platform_system == 'Windows'"}
[tool.poetry.scripts]
start = "rare.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"