-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.13 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.13 KB
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
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="mactoro",
version="0.1.0",
author="Shimono",
author_email="momo0907@gmail.com",
description="A powerful macOS automation tool for window control and action recording",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kory-/mactoro",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: System :: Monitoring",
],
python_requires=">=3.6",
install_requires=[
"pyobjc",
"pyautogui>=0.9.54",
"click>=8.1.7",
"pillow>=10.0.0",
"opencv-python>=4.8.0",
"pynput>=1.7.6",
],
entry_points={
"console_scripts": [
"mactoro=mactoro.cli:main",
],
},
)