adding new things

This commit is contained in:
Jasen Qin 2024-07-13 10:15:17 +10:00
parent 1b2f09a684
commit aec4fab7a0
3 changed files with 6 additions and 1 deletions

1
py-kivy/.gitignore vendored
View File

@ -2,3 +2,4 @@
__pycache__ __pycache__
.hypothesis .hypothesis
.logs/ .logs/
*pytest

View File

@ -42,5 +42,5 @@ class POSApp(App):
return main_layout return main_layout
if __name__ == '__main__': def main():
POSApp().run() POSApp().run()

View File

@ -25,3 +25,7 @@ build-backend = "poetry.core.masonry.api"
[tool.autopep8] [tool.autopep8]
indent-size = 2 indent-size = 2
[tool.poetry.scripts]
server = "pos_system.server:main"
ui = "pos_system.ui:main"