-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (47 loc) · 1.49 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
[project]
name = "pyri-sandbox"
version = "0.3.0"
description = "PyRI Teach Pendant User Software Sandbox"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["pyodide", "pyri-project", "pyri-runtime-package", "robotics"]
authors = [
{name = "John Wason", email = "wason@wasontech.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering"
]
dependencies = [
'pyri-common',
'appdirs',
'RobotRaconteur>=1.2.0',
'RobotRaconteurCompanion>=0.4.0',
'RestrictedPython'
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio"
]
[project.urls]
homepage="http://pyri.tech"
repository="https://github.com/pyri-project/pyri-sandbox"
[project.scripts]
pyri-sandbox-service = "pyri.sandbox.__main__:main"
[project.entry-points."pyri.plugins.sandbox_functions"]
pyri-sandbox-functions = "pyri.sandbox.sandbox_functions:get_sandbox_functions_factory"
[project.entry-points."pyri.plugins.robdef"]
pyri-sandbox-robdef = "pyri.sandbox.robdef:get_robdef_factory"
[project.entry-points."pyri.plugins.service_node_launch"]
pyri-sandbox-launch = "pyri.sandbox.service_node_launch:get_service_node_launch_factory"
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools',
'toml',
]
[tool.setuptools.package-data]
'pyri.sandbox' = ['*.robdef','*.js','*.yml']