Use the build system “meson” (close #32)
Replace the build system “setuptools” with “meson”.
This commit is contained in:
parent
ff0eee8380
commit
fac7a85566
37 changed files with 848 additions and 361 deletions
11
src/main.py
Normal file
11
src/main.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import sys
|
||||
import gi
|
||||
gi.require_version('Gtk', '3.0')
|
||||
|
||||
from .application import Application
|
||||
|
||||
|
||||
|
||||
def main(version):
|
||||
app = Application()
|
||||
return app.run(sys.argv)
|
||||
Loading…
Add table
Add a link
Reference in a new issue