forked from OthersideAI/self-operating-computer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 812 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
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.0.8",
packages=find_packages(),
install_requires=required, # Add dependencies here
entry_points={
"console_scripts": [
"operate=operate.main:main_entry",
],
},
long_description=long_description, # Add project description here
long_description_content_type="text/markdown", # Specify Markdown format
# include any other necessary setup options here
)