-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1013 Bytes
/
setup.py
File metadata and controls
36 lines (35 loc) · 1013 Bytes
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
from setuptools import setup, find_packages
setup(
name='app-usage-gui',
version='1.0',
packages=find_packages(where='src'),
package_dir={'': 'src'},
package_data={
'app_usage_gui': ['resources/*'],
},
install_requires=[
'psutil==5.9.8',
'pynput==1.8.1',
'requests==2.33.0',
'pillow==12.2.0',
'pywinauto==0.6.8',
'MouseInfo==0.1.3',
'PyGetWindow==0.0.9',
'PyMsgBox==1.0.9',
'pyperclip==1.9.0',
'PyRect==0.2.0',
'PyScreeze==1.0.1',
'pytweening==1.2.0',
'pyinstaller==6.12.0',
# macOS specific
'pyobjc-core==11.0; sys_platform == "darwin"',
'pyobjc-framework-Cocoa==11.0; sys_platform == "darwin"',
'pyobjc-framework-Quartz==11.0; sys_platform == "darwin"',
'rubicon-objc==0.5.0; sys_platform == "darwin"'
],
entry_points={
'console_scripts': [
'app-usage-gui=app_usage_gui.main:main',
],
},
)