-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
74 lines (64 loc) · 1.88 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
[build-system]
requires = [
"hatchling",
"wheel",
"twine",
]
build-backend = "hatchling.build"
[project]
name = "mebo"
dynamic = ["version"]
dependencies = [
"requests ~= 2.31.0",
"zeroconf ~= 0.131.0",
]
requires-python = ">=3.6"
authors = [
{name = "Cameron Lane", email = "crlane@adamanteus.com"},
]
maintainers = [
{name = "Cameron Lane", email = "crlane@adamanteus.com"},
]
description = "Simple python library to control the Mebo toy robot"
readme = "README.rst"
license = {file = "LICENSE.md"}
keywords = ["mebo", "robot", "education", "toys"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
"dev" = [
"coverage ~= 7.4.4",
"pytest >= 8.1.1",
"pytest-timeout ~= 2.3.1",
"pytest-cov",
"Sphinx ~= 7.2.6",
"python-coveralls ~= 2.9.1",
"ipdb",
"ruff",
"pre-commit"
]
[project.urls]
Homepage = "https://github.com/crlane/python-mebo"
Documentation = "https://python-mebo.readthedocs.io/en/latest/"
Repsoitory = "https://github.com/crlane/python-mebo"
"Bug Tracker" = "https://github.com/crlane/python-mebo/issues"
Changelog = "https://github.com/crlane/python-mebo/blob/master/CHANGELOG.md"
[tool.pytest.ini_options]
addopts = "-v -m 'not live_robot' --cov=mebo --cov-report=term-missing --cov-config .coveragerc --strict-markers"
timeout = 10
markers = [
"live_robot: marks tests as using a real, physical robot",
"media: marks tests that exercise the media functionality",
"components: marks tests that exercise arm, wrist, claw",
"motion: marks tests that exercise robot motion"
]
# [tool.pytest]
# [tool.hatch.build]
[tool.hatch.version]
path = "./src/mebo/__version__.py"