1
0
Fork 0
mirror of synced 2024-05-13 00:53:04 +12:00

Add poetry to pyproject.toml

This commit is contained in:
Dummerle 2022-07-01 14:31:09 +02:00
parent 35f4807a26
commit 9cf65b8e4e
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1

View file

@ -9,3 +9,28 @@ force-exclude = '''
| 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"