-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (95 loc) · 2.61 KB
/
pyproject.toml
File metadata and controls
105 lines (95 loc) · 2.61 KB
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
# Copyright 2025 The MathWorks, Inc.
[build-system]
requires = ["hatchling >= 1.27"]
build-backend = "hatchling.build"
[project]
name = "matlab-proxy"
version = "0.31.0"
description = "Python® package enables you to launch MATLAB® and access it from a web browser."
readme = "README.md"
license = "LicenseRef-MATHWORKS-CLOUD-REFERENCE-ARCHITECTURE-LICENSE"
license-files = ["LICENSE.md"]
requires-python = ">=3.10, <3.14"
authors = [
{ name = "The MathWorks Inc.", email = "cloud@mathworks.com" },
]
keywords = [
"Proxy",
"MATLAB Proxy",
"MATLAB",
"MATLAB Javascript Desktop",
"MATLAB Web Desktop",
"Remote MATLAB Web Access",
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"aiohttp_session[secure]",
"aiohttp>=3.7.4",
"psutil",
"requests",
"rich",
"watchdog",
]
[project.urls]
Homepage = "https://github.com/mathworks/matlab-proxy/"
Documentation = "https://github.com/mathworks/matlab-proxy/blob/main/README.md"
Issues = "https://github.com/mathworks/matlab-proxy/issues"
# Testing dependencies
# Note: pytest-asyncio is pinned to 0.24.0 for event loop compatibility
[project.optional-dependencies]
test = [
"pytest",
"pytest-env",
"pytest-cov",
"pytest-timeout",
"pytest-mock",
"pytest-aiohttp",
"psutil",
"urllib3",
"pytest-playwright",
"pytest-asyncio",
]
dev = [
"aiohttp-devtools",
"black",
"ruff",
"matlab-proxy[test]",
]
[project.entry-points.matlab_proxy_configs]
default_configuration_matlab_proxy = "matlab_proxy.default_configuration:config"
[project.scripts]
matlab-proxy-app = "matlab_proxy.app:main"
matlab-proxy-app-list-servers = "matlab_proxy.util.list_servers:print_server_info"
matlab-proxy-manager-app = "matlab_proxy_manager.web.app:main"
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"
[tool.hatch.build.targets.wheel]
packages = ["matlab_proxy", "matlab_proxy_manager"]
# To package gui files that are ignored by gitignore, we are using the artifacts option
artifacts = ["matlab_proxy/gui/**/*"]
[tool.hatch.build.targets.sdist]
include = [
"README.md",
"matlab_proxy/**",
"matlab_proxy_manager/**",
"gui/**",
"tests/**",
]
exclude = [
"gui/node_modules/**",
"gui/build/**",
"matlab_proxy/gui/**",
"install_guides/**",
"examples/**",
"img/**",
"troubleshooting/**",
]
ignore-vcs = true