forked from OthersideAI/self-operating-computer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 950 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
# Read the contents of your requirements.txt file
with open("requirements.txt") as f:
required = f.read().splitlines()
# 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()
setup(
name="self-operating-computer",
version="1.4.6",
packages=find_packages(),
install_requires=required, # Add dependencies here
entry_points={
"console_scripts": [
"operate=operate.main:main_entry",
],
},
package_data={
# Include the file in the operate.models.weights package
"operate.models.weights": ["best.pt"],
},
long_description=long_description, # Add project description here
long_description_content_type="text/markdown", # Specify Markdown format
# include any other necessary setup options here
)