-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (39 loc) · 964 Bytes
/
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
[project]
name = "pyri-core"
version = "0.3.0"
description = "PyRI Teach Pendant Core Runtime"
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',
'RobotRaconteur',
'numpy',
'PyYAML',
'appdirs'
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio"
]
[project.urls]
homepage="http://pyri.tech"
repository="https://github.com/pyri-project/pyri-core"
[project.scripts]
pyri-core = "pyri.core.__main__:main"
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools',
'toml',
]