Initial project structure created by ProjectInitializerTool
This commit is contained in:
commit
4b124167ab
150
.gitignore
vendored
Normal file
150
.gitignore
vendored
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
pip-wheel-metadata/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a CI server in a temp folder.
|
||||||
|
# Then everything is copied to shipping folder during release.
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# PEP 582; __pypackages__
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# PEP 621; pyproject.toml sections
|
||||||
|
.pdm.toml
|
||||||
|
.pdm.lock
|
||||||
|
# .venv
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# static analysis tool
|
||||||
|
.flake8
|
||||||
|
|
||||||
|
# VS Code
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.history/
|
||||||
|
|
||||||
|
# sublime
|
||||||
|
*.sublime-workspace
|
||||||
|
*.sublime-project
|
||||||
|
|
||||||
|
# Kate
|
||||||
|
.kateproject
|
||||||
|
.kateproject.lock
|
||||||
|
.katenewfile. Neuen Filenamensvorschlag merken.
|
||||||
|
|
||||||
|
# Temporary files
|
||||||
|
*.swp
|
||||||
|
*~
|
||||||
16
README.md
Normal file
16
README.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# cpp_python_debug
|
||||||
|
|
||||||
|
A brief description of cpp_python_debug.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
- Feature 1
|
||||||
|
- Feature 2
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
...
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
...
|
||||||
|
|
||||||
|
## License
|
||||||
|
...
|
||||||
0
cpp_python_debug.ico
Normal file
0
cpp_python_debug.ico
Normal file
0
cpp_python_debug/__init__.py
Normal file
0
cpp_python_debug/__init__.py
Normal file
17
cpp_python_debug/__main__.py
Normal file
17
cpp_python_debug/__main__.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# cpp_python_debug/__main__.py
|
||||||
|
|
||||||
|
# Example import assuming your main logic is in a 'main' function
|
||||||
|
# within a 'app' module in your 'cpp_python_debug.core' package.
|
||||||
|
# from cpp_python_debug.core.app import main as start_application
|
||||||
|
#
|
||||||
|
# Or, if you have a function in cpp_python_debug.core.core:
|
||||||
|
# from cpp_python_debug.core.core import main_function
|
||||||
|
|
||||||
|
def main():
|
||||||
|
print(f"Running cpp_python_debug...")
|
||||||
|
# Placeholder: Replace with your application's entry point
|
||||||
|
# Example: start_application()
|
||||||
|
print("To customize, edit 'cpp_python_debug/__main__.py' and your core modules.")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
0
cpp_python_debug/core/__init__.py
Normal file
0
cpp_python_debug/core/__init__.py
Normal file
0
cpp_python_debug/core/core.py
Normal file
0
cpp_python_debug/core/core.py
Normal file
0
cpp_python_debug/gui/__init__.py
Normal file
0
cpp_python_debug/gui/__init__.py
Normal file
0
cpp_python_debug/gui/gui.py
Normal file
0
cpp_python_debug/gui/gui.py
Normal file
24
doc/English-manual.md
Normal file
24
doc/English-manual.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# cpp_python_debug - English Manual
|
||||||
|
|
||||||
|
## Introduction
|
||||||
|
Welcome to cpp_python_debug. This document provides an overview of how to install, use, and understand the project.
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
Describe the installation steps here. For example:
|
||||||
|
1. Clone the repository: `git clone <repository_url>`
|
||||||
|
2. Navigate to the project directory: `cd cpp_python_debug`
|
||||||
|
3. Install dependencies: `pip install -r requirements.txt` (if applicable)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
Explain how to run and use the application.
|
||||||
|
- To run the application: `python -m cpp_python_debug`
|
||||||
|
- Command-line arguments (if any).
|
||||||
|
- GUI interaction (if any).
|
||||||
|
|
||||||
|
## Development
|
||||||
|
Information for developers contributing to the project.
|
||||||
|
- Code structure.
|
||||||
|
- How to run tests.
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
Common issues and their solutions.
|
||||||
24
doc/Italian-manual.md
Normal file
24
doc/Italian-manual.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# cpp_python_debug - Manuale Italiano
|
||||||
|
|
||||||
|
## Introduzione
|
||||||
|
Benvenuto in cpp_python_debug. Questo documento fornisce una panoramica su come installare, utilizzare e comprendere il progetto.
|
||||||
|
|
||||||
|
## Installazione
|
||||||
|
Descrivi i passaggi di installazione qui. Ad esempio:
|
||||||
|
1. Clona il repository: `git clone <repository_url>`
|
||||||
|
2. Naviga nella directory del progetto: `cd cpp_python_debug`
|
||||||
|
3. Installa le dipendenze: `pip install -r requirements.txt` (se applicabile)
|
||||||
|
|
||||||
|
## Utilizzo
|
||||||
|
Spiega come eseguire e utilizzare l'applicazione.
|
||||||
|
- Per eseguire l'applicazione: `python -m cpp_python_debug`
|
||||||
|
- Argomenti da riga di comando (se presenti).
|
||||||
|
- Interazione con la GUI (se presente).
|
||||||
|
|
||||||
|
## Sviluppo
|
||||||
|
Informazioni per gli sviluppatori che contribuiscono al progetto.
|
||||||
|
- Struttura del codice.
|
||||||
|
- Come eseguire i test.
|
||||||
|
|
||||||
|
## Risoluzione dei problemi
|
||||||
|
Problemi comuni e relative soluzioni.
|
||||||
Loading…
Reference in New Issue
Block a user