Add Website_brochure_generator app with uv package management

- Complete AI-powered website brochure generator
- Includes pyproject.toml and uv.lock for dependency management
- Features web scraping, AI content generation, and brochure creation
- Ready for deployment and further development
This commit is contained in:
shabsi4u
2025-09-21 13:19:11 +05:30
parent 3286cfb395
commit 9307ac7f08
8 changed files with 3509 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
[project]
name = "website-brochure-generator"
version = "1.0.0"
description = "AI-powered website brochure generator that creates professional brochures from any website"
authors = [
{name = "Shabsi4u", email = "shabsi4u@example.com"}
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"requests>=2.25.0",
"beautifulsoup4>=4.9.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=0.950",
]
[project.scripts]
brochure-generator = "website_brochure_generator:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]