- Created architecture documentation outlining high-level design, module organization, data flow, security model, performance considerations, testing strategy, and deployment architecture. - Added pyproject.toml for project metadata and dependencies management. - Introduced requirements files for development and production dependencies. - Set up testing configuration with pytest and tox. - Established basic directory structure for source code and tests, including __init__.py files. - Implemented a sample web application (index.html) for drag-and-drop functionality. - Configured VS Code workspace settings for Python development.
7 lines
224 B
Python
7 lines
224 B
Python
"""WebDrop Bridge - Qt-based desktop application for intelligent drag-and-drop file handling."""
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "WebDrop Team"
|
|
__license__ = "MIT"
|
|
|
|
__all__ = ["__version__", "__author__", "__license__"]
|