Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing dependency #63

Merged
merged 3 commits into from
Nov 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
152 changes: 149 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from cx_Freeze import setup, Executable

ayon_root = Path(os.path.dirname(__file__))
resources_dir = ayon_root / "common" / "ayon_common" / "resources"
resources_dir = ayon_root / "common" / "ayon_common" / "resources"

version_content = {}

Expand Down Expand Up @@ -38,7 +38,8 @@
"qtpy",
"filecmp",
"dns",
# Python defaults (cx_Freeze skip them by default)
# Python defaults (cx_Freeze skip some of them because are unused)
"colorsys",
"dbm",
"dataclasses",
"email.mime.application",
Expand All @@ -50,7 +51,152 @@
"email.mime.nonmultipart",
"email.mime.text",
"sqlite3",
"timeit"
"timeit",
# Just to be sure
"abc",
"argparse",
"asyncio",
"base64",
"cmd",
"code",
"codecs",
"codeop",
"collections",
"compileall",
"configparser",
"concurrent",
"contextlib",
"contextvars",
"copy",
"csv",
"ctypes",
"curses",
"distutils",
"datetime",
"decimal",
"difflib",
"dis",
"email",
"encodings",
"ensurepip",
"enum",
"filecmp",
"fileinput",
"fnmatch",
"formatter",
"fractions",
"ftplib",
"functools",
"genericpath",
"getopt",
"getpass",
"gettext",
"glob",
"graphlib",
"gzip",
"hashlib",
"heapq",
"hmac",
"html",
"http",
"idlelib",
"imaplib",
"imghdr",
"importlib",
"inspect",
"io",
"ipaddress",
"json",
"keyword",
"linecache",
"locale",
"logging",
"lzma",
"mailbox",
"mailcap",
"mimetypes",
"modulefinder",
"multiprocessing",
"netrc",
"nntplib",
"numbers",
"opcode",
"operator",
"optparse",
"os",
"pathlib",
"pdb",
"pickle",
"pickletools",
"pipes",
"pkgutil",
"platform",
"plistlib",
"poplib",
"posixpath",
"pprint",
"profile",
"pstats",
"pty",
"py_compile",
"pyclbr",
"pydoc",
"queue",
"quopri",
"random",
"re",
"reprlib",
"rlcompleter",
"runpy",
"sched",
"secrets",
"selectors",
"shelve",
"shlex",
"shutil",
"signal",
"smtpd",
"smtplib",
"sndhdr",
"socket",
"socketserver",
"sre_compile",
"sre_constants",
"sre_parse",
"ssl",
"stat",
"statistics",
"string",
"stringprep",
"struct",
"subprocess",
"sunau",
"symbol",
"symtable",
"tarfile",
"telnetlib",
"tempfile",
"textwrap",
"threading",
"token",
"tokenize",
"trace",
"traceback",
"tracemalloc",
"turtle",
"types",
"typing",
"uuid",
"urllib",
"warnings",
"wave",
"weakref",
"webbrowser",
"xml",
"zipapp",
"zipfile",
"zipimport",
"zoneinfo",
]

includes = []
Expand Down
Loading