2023-11-14 14:01:37 -08:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
2023-12-06 05:10:12 -08:00
|
|
|
# Read the contents of your requirements.txt file
|
|
|
|
|
with open("requirements.txt") as f:
|
|
|
|
|
required = f.read().splitlines()
|
2023-11-18 06:48:09 -08:00
|
|
|
|
2023-12-06 06:37:21 -08:00
|
|
|
# Read the contents of your README.md file for the project description
|
|
|
|
|
with open("README.md", "r", encoding="utf-8") as readme_file:
|
|
|
|
|
long_description = readme_file.read()
|
|
|
|
|
|
2023-11-14 14:01:37 -08:00
|
|
|
setup(
|
2024-12-18 17:10:21 -08:00
|
|
|
name="self-operating-computer",
|
2025-02-28 14:53:35 -08:00
|
|
|
version="1.5.8",
|
2023-11-14 14:01:37 -08:00
|
|
|
packages=find_packages(),
|
2023-12-06 05:10:12 -08:00
|
|
|
install_requires=required, # Add dependencies here
|
2023-11-14 14:01:37 -08:00
|
|
|
entry_points={
|
|
|
|
|
"console_scripts": [
|
2023-11-18 06:48:09 -08:00
|
|
|
"operate=operate.main:main_entry",
|
2023-11-14 14:01:37 -08:00
|
|
|
],
|
|
|
|
|
},
|
2024-01-19 09:22:11 -08:00
|
|
|
package_data={
|
|
|
|
|
# Include the file in the operate.models.weights package
|
|
|
|
|
"operate.models.weights": ["best.pt"],
|
|
|
|
|
},
|
2023-12-06 06:37:21 -08:00
|
|
|
long_description=long_description, # Add project description here
|
|
|
|
|
long_description_content_type="text/markdown", # Specify Markdown format
|
2023-11-14 14:01:37 -08:00
|
|
|
# include any other necessary setup options here
|
|
|
|
|
)
|