Files
LangBot/MANIFEST.in
copilot-swe-agent[bot] cab573f3e2 Add package structure and resource path utilities
- Created langbot/ package with __init__.py and __main__.py entry point
- Added paths utility to find frontend and resource files from package installation
- Updated config loading to use resource paths
- Updated frontend serving to use resource paths
- Added MANIFEST.in for package data inclusion
- Updated pyproject.toml with build system and entry points

Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com>
2025-11-07 13:58:18 +00:00

24 lines
521 B
Plaintext

include README.md
include LICENSE
include pyproject.toml
# Include all Python packages
recursive-include langbot *.py
recursive-include pkg *.py
recursive-include libs *.py
# Include templates and resources
recursive-include templates *
recursive-include res *
# Include compiled frontend files (will be added during build)
recursive-include web/out *
# Exclude unnecessary files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .DS_Store
global-exclude *.so
global-exclude *.dylib