mirror of
https://github.com/Hopiu/bowser.git
synced 2026-03-16 19:10:24 +00:00
- Added README.md with project description, building instructions, and development milestones. - Created the project structure with directories for source code, assets, and tests. - Implemented a basic entry point in main.py with argument parsing and logging configuration. - Developed preliminary browser orchestration in browser.py, including tab management and navigation. - Established a GTK-based UI framework in chrome.py, integrating key UI components including the address bar and navigation buttons. - Incorporated HTTP request handling in http.py, with enhanced logging of requests and responses. - Added initial assets: logo and images for browser UI. - Configured dependencies in pyproject.toml for development and runtime environments. - Initialized version control with uv.lock for dependency management.
49 lines
952 B
TOML
49 lines
952 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "bowser"
|
|
version = "0.0.1"
|
|
description = "Educational web browser from scratch"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "Bowser", email = "bowser@example.com"}]
|
|
dependencies = [
|
|
"PyGObject>=3.54.0", # GTK+ bindings for Python
|
|
"skia-python>=87.9", # Skia 2D graphics library
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=9.0.0",
|
|
"pytest-cov>=7.0.0",
|
|
"black>=25.0",
|
|
"ruff>=0.9.0",
|
|
"mypy>=1.9.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
bowser = "main:main"
|
|
|
|
[tool.uv]
|
|
managed = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ["py311"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
select = ["E", "F", "W"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = false
|