-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (29 loc) · 1.02 KB
/
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
29
30
31
32
33
34
import platform
from setuptools import setup, find_packages
VERSION = '0.1.7'
requires = ['six', 'pynput']
system = platform.system()
if system == 'Darwin':
requires.append('pyobjc-framework-Quartz')
setup(
name='pygui-macro',
version=VERSION,
description='Cross-platform gui macro command tool with python, automate your keyboard and mouse.',
long_description='Cross-platform gui macro command tool with python, automate your keyboard and mouse. You can use it to record keyboard and mouse action, and rerun it as a script.',
keywords='gui macro automate keyboard mouse',
author='haoflynet',
author_email='[email protected]',
maintainer='haoflynet',
maintainer_email='[email protected]',
url='https://github.com/haoflynet/pygui-macro',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=requires,
entry_points={
'console_scripts': [
'pygui-macro=pygui_macro.pygui_macro:main'
]
}
)