mirror of
https://github.com/blw1138/cross-py-builder.git
synced 2026-09-07 21:41:09 -05:00
- Add ctrl/ package: Flask app (waitress), SQLite job store, background scheduler that probes configured workers, dispatches via /upload and /checkout_git, fetches artifacts, and serves a single-page UI - Supporting API: /api/jobs (create/list/detail/cancel), /api/workers, /api/capabilities, artifact download, and SSE log stream - Workers keep the existing HTTP API; add /progress/<job_id> endpoint and per-step build tracking for live status - Retire agent_manager.py and the cross-py-builder CLI; controller UI is the primary frontend - Record design in DESIGN.md; add waitress dependency Note: /progress is exposed on the worker but the synchronous /upload and /checkout endpoints block until a build completes, so per-step worker progress is not yet relayed live in the UI. Live streaming needs an async-start worker endpoint as a follow-up.
27 lines
870 B
Python
27 lines
870 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="cross_py_builder",
|
|
version="0.0.1",
|
|
packages=find_packages(),
|
|
install_requires=open("requirements.txt").read().splitlines(),
|
|
entry_points={
|
|
"console_scripts": [
|
|
"cross-py-agent=cross_py_builder.build_agent:main",
|
|
"cross-py-controller=ctrl.app:main",
|
|
],
|
|
},
|
|
author="Brett Williams",
|
|
author_email="[email protected]",
|
|
description="A cross-platform Python build system using PyInstaller",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/blw1138/cross-py-builder",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires='>=3.10',
|
|
)
|