Files
cross-py-builder/setup.py
Brett Williams b511962a1f This works
2025-03-12 00:48:46 -05:00

27 lines
889 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-builder=cross_py_builder.agent_manager:main",
],
},
author="Brett Williams",
author_email="blw1138@mac.com",
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',
)