adding new things
This commit is contained in:
parent
1b2f09a684
commit
aec4fab7a0
|
|
@ -2,3 +2,4 @@
|
||||||
__pycache__
|
__pycache__
|
||||||
.hypothesis
|
.hypothesis
|
||||||
.logs/
|
.logs/
|
||||||
|
*pytest
|
||||||
|
|
|
||||||
|
|
@ -42,5 +42,5 @@ class POSApp(App):
|
||||||
return main_layout
|
return main_layout
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
def main():
|
||||||
POSApp().run()
|
POSApp().run()
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue