mirror of
https://github.com/blw1138/cross-py-builder.git
synced 2025-12-17 08:38:11 +00:00
Ability to checkout git repos, custom ports, and setup for pip
This commit is contained in:
26
setup.py
Normal file
26
setup.py
Normal file
@@ -0,0 +1,26 @@
|
||||
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',
|
||||
)
|
||||
Reference in New Issue
Block a user