mirror of
https://github.com/blw1138/cross-py-builder.git
synced 2025-12-17 08:38:11 +00:00
27 lines
889 B
Python
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',
|
|
)
|