diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 480d227..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/.project -/.pydevproject -/src/__pycache__ diff --git a/LICENSE b/LICENSE index 67a41ab..a5e22a7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Aditya +Copyright (c) 2017 Aditya M. Deshpande Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e5f5f4c..1f70ec9 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,15 @@ For more details, refer the tkinter documentation https://wiki.python.org/moin/T Feel free to contact me, if you need any kind of input. I will be happy to discuss. I invite anyone interested to contribute. + +If you find this work useful please cite it as: +``` +@misc{pythonguidemos, + author = {Deshpande, Aditya M.}, + title = {python-gui-demos}, + year = {2017}, + publisher = {GitHub}, + journal = {GitHub repository}, + howpublished = {\url{https://github.com/adipandas/python-gui-demos}}, +} +``` diff --git a/src/main.py b/src/main.py index b920c0c..8fcdc5d 100644 --- a/src/main.py +++ b/src/main.py @@ -20,7 +20,7 @@ import program12 as p12 import program13 as p13 -def main(): +def start_all_programmes(): p1.sayhello() p2.HelloAppLaunch() p3.GreetingAppLaunch() @@ -35,5 +35,6 @@ def main(): p12.launchNoteBookApp() p13.launchApp() -if __name__ == '__main__':main() +if __name__ == '__main__': + start_all_programmes()