-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
121 lines (110 loc) · 3.84 KB
/
pyproject.toml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[project]
name = "basiliskllm"
dynamic = ["version"]
description = "Where LLMs Unite"
authors = [
{name = "André-Abush Clause", email ="[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
homepage = "https://github.com/SigmaNight/basiliskLLM"
repository = "https://github.com/SigmaNight/basiliskLLM"
issues = "https://github.com/SigmaNight/basiliskLLM/issues"
[build-system]
requires = ["cx_freeze>+7.0.0", "setuptools>=64.0.0", "setuptools_scm>=8"]
build-backend = "cx_freeze.build"
requires-python = ">=3.12"
[tool.setuptools]
packages = ["basilisk"]
[tool.setuptools_scm]
[tool.poetry]
name = "basiliskllm"
package-mode = false
[tool.poetry.dependencies]
accessible-output3 = {git = "https://github.com/SigmaNight/accessible_output3.git"}
anthropic = "^0.45.2"
babel = "^2.17.0"
cx-freeze = "^7.2.7"
fsspec = "^2025.2.0"
google-generativeai = "^0.8.4"
httpx = "^0.28.1"
keyring = "^25.6.0"
markdown2 = "^2.5.3"
more-itertools = "^10.6.0"
numpy = "^2.2.1"
openai = "^1.61.1"
pillow = "^11.1.0"
psutil = "^6.1.1"
platformdirs = "^4.3.6"
pydantic = "2.10.6"
pydantic-settings = "^2.7.1"
python = "^3.12"
pywin32 = { version = "^308", markers = "sys_platform == 'win32'" }
pyyaml = "^6.0.1"
sounddevice = "^0.5.1"
truststore = "^0.10.1"
watchdog = "^6.0.0"
wxpython = "^4.2.2"
universal-pathlib = "^0.2.6"
[tool.poetry.group.dev.dependencies]
commitizen = "^4.2.0"
pre-commit = "^4.1.0"
ruff = "^0.9.5"
setuptools-scm = "^8.0.4"
[tool.ruff]
src = ["src"]
respect-gitignore = true
line-length = 80
unsafe-fixes = false
target-version = "py312"
builtins = ["_", "gettext", "ngettext", "npgettext", "pgettext"]
[tool.ruff.format]
indent-style = "tab"
line-ending = "lf"
quote-style = "preserve"
skip-magic-trailing-comma = true
[tool.ruff.lint]
extend-select = ["INT","I","C90"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.isort]
known-first-party = ["basilisk"]
split-on-trailing-comma = false
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "poetry"
[tool.cxfreeze]
executables = [
{script="basilisk/__main__.py", base="gui", target_name="basilisk"},
]
[tool.cxfreeze.build_exe]
optimize = 1
build_exe = "dist"
excludes = [
"babel.messages", "commitizen", "distutils", "email", "ftplib", "h11.tests", "jinja2",
"multiprocessing",
"numpy._core.tests", "numpy.f2py", "numpy.fft", "numpy.ma", "numpy.polynomial", "numpy.random", "numpy.testing",
"pip", "pydoc_data", "packaging",
"setuptools", "setuptools_scm", "sqlite3",
"tomllib", "test", "tkinter", "unittest",
"wint32gui", "win32ui", "win32uiold", "winreg",
]
include_files = ["basilisk/res"]
includes = ["numpy", "httplib2.socks", "win32timezone"]
packages = ["numpy", "google.generativeai", "basilisk.provider_engine", "keyring", "fsspec.implementations", "upath.implementations"]
zip_include_packages = [
"anyio", "annotated_types", "anthropic", "asyncio",
"backports", "cachetools", "certifi", "cffi", "charset_normalizer", "concurrent", "collections", "colorama", "ctypes", "curses",
"distro", "dotenv", "encodings", "email", "fsspec", "google", "googleapiclient", "grpc_status",
"h11", "html", "httpcore", "http", "httplib2", "httpx",
"idna", "importlib", "importlib_metadata", "importlib_resources",
"jaraco", "jiter", "json", "keyring", "libloader", "logging",
"openai", "numpy", "more_itertools",
"PIL", "platform_utils", "platformdirs", "proto", "psutil", "pyasn1", "pyasn1_modules", "pycparser", "pyparsing", "pydantic", "pydantic_core", "pydantic_settings", "pywin", "pywin32_system32",
"re", "rsa", "requests", "sniffio", "tarfile", "tokenizers", "tomli", "truststore", "tqdm", "uritemplate", "urllib", "urllib3", "upath",
"watchdog", "win32api", "win32com", "win32ctypes", "win32timezone",
"xml", "yaml", "zipfile", "zipp", "zoneinfo",
"basilisk"]