mirror of
https://github.com/blw1138/cross-py-builder.git
synced 2026-09-07 21:41:09 -05:00
The nested cross_py_builder package only contains the worker agent. Rename it to agent/ to match its role and distinguish it from the ctrl package and the PyPI distribution name. Internal imports are relative, so build_agent.py and zeroconf_server.py are unaffected except for the cosmetic APP_NAME banner.
27 lines
859 B
Python
27 lines
859 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=agent.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',
|
|
)
|