Migrate README to rST, fiddle with run files, update setup config
This commit is contained in:
parent
8ab9cafa24
commit
248eda331c
@ -1,3 +1,4 @@
|
|||||||
# Playtypus
|
Playtypus
|
||||||
|
=========
|
||||||
|
|
||||||
Playtpus is a desktop Funkwhale client.
|
Playtpus is a desktop Funkwhale client.
|
@ -0,0 +1,10 @@
|
|||||||
|
from PyQt5 import QtWidgets
|
||||||
|
from playtypus.mainwindow import MainWindow
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""Main"""
|
||||||
|
app = QtWidgets.QApplication([])
|
||||||
|
main_window = MainWindow()
|
||||||
|
main_window.show()
|
||||||
|
return app.exec()
|
@ -1,14 +1,3 @@
|
|||||||
from PyQt5 import QtWidgets
|
from playtypus import main
|
||||||
from mainwindow import MainWindow
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
|
||||||
"""Main"""
|
|
||||||
app = QtWidgets.QApplication([])
|
|
||||||
main_window = MainWindow()
|
|
||||||
main_window.show()
|
|
||||||
return app.exec()
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
main()
|
main()
|
||||||
|
4
run_playtypus.py
Executable file
4
run_playtypus.py
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
from playtypus import main
|
||||||
|
|
||||||
|
main()
|
14
setup.cfg
14
setup.cfg
@ -2,15 +2,25 @@
|
|||||||
name = Playtypus
|
name = Playtypus
|
||||||
version = 0.1.0
|
version = 0.1.0
|
||||||
description = A desktop client for Funkwhale
|
description = A desktop client for Funkwhale
|
||||||
|
long_description = file: README.rst
|
||||||
|
long_description_content_type = text/x-rst
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
packages = find:
|
packages =
|
||||||
= src
|
playtypus
|
||||||
install_requirements =
|
install_requirements =
|
||||||
PyQt5
|
PyQt5
|
||||||
requests
|
requests
|
||||||
funksnake
|
funksnake
|
||||||
QtAwesome
|
QtAwesome
|
||||||
|
python_requires = >=3.7
|
||||||
|
|
||||||
|
[options.entry_points]
|
||||||
|
gui_scripts =
|
||||||
|
playtypus = playtypus
|
||||||
|
|
||||||
|
[bdist_wheel]
|
||||||
|
universal = 1
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
max-line-length = 120
|
max-line-length = 120
|
||||||
|
Loading…
Reference in New Issue
Block a user