Skip to content

Commit 3e19ed9

Browse files
committed
Add setup.py for streamline setup
1 parent ddd72cf commit 3e19ed9

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,6 @@ Run it!
2525
python main.py
2626
```
2727

28-
- On Mac, make sure to give permissions to the Terminal app in both "Screen Recording" and "Accessibility" in the "Security & Privacy" page of "System Preferences"
28+
- On Mac, make sure to give permissions to the Terminal app in both "Screen Recording" and "Accessibility" in the "Security & Privacy" page of "System Preferences"
29+
30+
- This project is only compatible with MacOS as this time.

operate/__init__.py

Whitespace-only changes.

main.py operate/main.py

File renamed without changes.

setup.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="self-operating-computer",
5+
version="1.0.0",
6+
packages=find_packages(),
7+
entry_points={
8+
"console_scripts": [
9+
"operate=operate.main:main",
10+
],
11+
},
12+
# include any other necessary setup options here
13+
)

0 commit comments

Comments
 (0)