From a97e6f7b9132e5a38e6c1018e5828d6f6916a6dd Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 30 Jun 2021 00:16:45 +0100 Subject: [PATCH] new project started --- .gitignore | 13 +++++ QtGentools.epj | 130 +++++++++++++++++++++++++++++++++++++++++++++++++ __init__.py | 0 qtgentools.py | 0 4 files changed, 143 insertions(+) create mode 100644 .gitignore create mode 100644 QtGentools.epj create mode 100644 __init__.py create mode 100644 qtgentools.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f29022e --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +.eric6project/ +.ropeproject/ +.directory/ +*.pyc +*.pyo +*.orig +*.bak +*.rej +*~ +cur/ +tmp/ +__pycache__/ +*.DS_Store diff --git a/QtGentools.epj b/QtGentools.epj new file mode 100644 index 0000000..30fd7eb --- /dev/null +++ b/QtGentools.epj @@ -0,0 +1,130 @@ +{ + "header": { + "comment": "eric project file for project QtGentools", + "copyright": "Copyright (C) 2021 Andrew Foster, qtgentools@liquid.me.uk", + "saved": "2021-06-30, 00:16:36" + }, + "project": { + "AUTHOR": "Andrew Foster", + "CHECKERSPARMS": {}, + "DESCRIPTION": "Set of GUI tools for helping to manage portage", + "DOCSTRING": "", + "DOCUMENTATIONPARMS": {}, + "EMAIL": "qtgentools@liquid.me.uk", + "EOL": 0, + "FILETYPES": { + "*.e4p": "OTHERS", + "*.epj": "OTHERS", + "*.idl": "INTERFACES", + "*.md": "OTHERS", + "*.proto": "PROTOCOLS", + "*.py": "SOURCES", + "*.py3": "SOURCES", + "*.pyw": "SOURCES", + "*.pyw3": "SOURCES", + "*.qm": "TRANSLATIONS", + "*.qrc": "RESOURCES", + "*.rst": "OTHERS", + "*.ts": "TRANSLATIONS", + "*.txt": "OTHERS", + "*.ui": "FORMS", + "GNUmakefile": "OTHERS", + "Makefile": "OTHERS", + "README": "OTHERS", + "README.*": "OTHERS", + "makefile": "OTHERS" + }, + "FORMS": [], + "HASH": "d281728577b1da42b1c49d27174d437ec65311a5", + "IDLPARAMS": { + "DefinedNames": [], + "IncludeDirs": [], + "UndefinedNames": [] + }, + "INTERFACES": [], + "LEXERASSOCS": {}, + "MAINSCRIPT": "qtgentools.py", + "MAKEPARAMS": { + "MakeEnabled": false, + "MakeExecutable": "", + "MakeFile": "", + "MakeParameters": "", + "MakeTarget": "", + "MakeTestOnly": true + }, + "MIXEDLANGUAGE": false, + "OTHERS": [ + ".gitignore" + ], + "OTHERTOOLSPARMS": {}, + "PACKAGERSPARMS": {}, + "PROGLANGUAGE": "Python3", + "PROJECTTYPE": "PyQt5", + "PROJECTTYPESPECIFICDATA": {}, + "PROTOCOLS": [], + "RCCPARAMS": { + "CompressLevel": 0, + "CompressionDisable": false, + "CompressionThreshold": 70, + "PathPrefix": "" + }, + "RESOURCES": [], + "SOURCES": [ + "__init__.py", + "qtgentools.py" + ], + "SPELLEXCLUDES": "", + "SPELLLANGUAGE": "", + "SPELLWORDS": "", + "TRANSLATIONEXCEPTIONS": [], + "TRANSLATIONPATTERN": "", + "TRANSLATIONS": [], + "TRANSLATIONSBINPATH": "", + "UICPARAMS": { + "Package": "", + "PackagesRoot": "", + "RcSuffix": "" + }, + "VCS": "Git", + "VCSOPTIONS": { + "add": [ + "" + ], + "checkout": [ + "" + ], + "commit": [ + "" + ], + "diff": [ + "" + ], + "export": [ + "" + ], + "global": [ + "" + ], + "history": [ + "" + ], + "log": [ + "" + ], + "remove": [ + "" + ], + "status": [ + "" + ], + "tag": [ + "" + ], + "update": [ + "" + ] + }, + "VCSOTHERDATA": {}, + "VERSION": "0.1" + } +} \ No newline at end of file diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/qtgentools.py b/qtgentools.py new file mode 100644 index 0000000..e69de29 -- 2.44.2