1
0
Fork 0
mirror of synced 2024-06-21 12:00:25 +12:00

Add missing dependencies to pyproject.toml

This commit is contained in:
Dummerle 2022-08-27 13:43:55 +02:00
parent cb3f316bf0
commit a71bb1fe91
No known key found for this signature in database
GPG key ID: AB68CC59CA39F2F1
2 changed files with 16 additions and 10 deletions

View file

@ -25,22 +25,32 @@ 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'"}
pypresence = { version = "^4.2.1", optional = true }
pywin32 = { version = "^304", markers = "platform_system == 'Windows'" }
pywebview = [
{ version = "^3.6.3", extras = ["cef"], platform = "windows", optional = true },
{ version = "^3.6.3", extras = ["gtk"], platform = "linux", optional = true },
]
legendary-gl = "^0.20.27"
[tool.poetry.scripts]
start = "rare.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
Nuitka = "^1.0.6"
pylint = "^2.15.0"
black = "^22.6.0"
[build-system]
requires = ["setuptools>=42", "wheel", "nuitka", "toml"]
build-backend = "nuitka.distutils.Build"
[nuitka]
show-scons = true
enable-plugin = pyqt5,anti-bloat
enable-plugin = ["pyqt5", "anti-bloat"]
show-anti-bloat-changes = true
nofollow-import-to = ["*.tests", "*.distutils"]

View file

@ -1,8 +1,4 @@
#!/usr/bin/python
import argparse
import os
import pathlib
import sys
from argparse import ArgumentParser