-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.31 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# from setuptools import setup
# APP = ['fix_ai.py']
# DATA_FILES = []
# OPTIONS = {
# 'argv_emulation': False,
# 'iconfile': 'app.iconset/FixAI.icns',
# 'plist': {
# 'CFBundleName': 'Fix AI',
# 'CFBundleDisplayName': 'Fix AI',
# 'CFBundleIdentifier': 'com.fixai.app',
# 'CFBundleVersion': '1.0.0',
# 'CFBundleShortVersionString': '1.0.0',
# 'LSUIElement': True, # This makes it a background app
# 'NSAppleEventsUsageDescription': 'This app requires access to automate keyboard input for text enhancement.',
# 'NSHighResolutionCapable': True,
# },
# 'packages': [
# 'rumps',
# 'openai',
# 'pyperclip',
# 'certifi',
# 'charset_normalizer',
# 'urllib3',
# 'requests'
# ],
# 'includes': [
# 'packaging',
# 'packaging.version',
# 'packaging.specifiers',
# 'packaging.requirements',
# 'json',
# 'os',
# 'sys'
# ],
# 'excludes': ['tkinter', 'PyQt5', 'wx', 'PySide2'],
# }
# setup(
# app=APP,
# name='Fix AI',
# data_files=DATA_FILES,
# options={'py2app': OPTIONS},
# setup_requires=['py2app'],
# install_requires=[
# 'rumps',
# 'openai',
# 'pyperclip',
# 'requests'
# ],
# )