forked from skybrush-io/skybrush-ext-rc-gamepad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (41 loc) · 1.3 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
[tool.poetry]
# Change this to the name of your own extension
name = "skybrush-ext-rc-gamepad"
version = "0.7.0"
description = "Enabling the usage of gamepads as remote controllers in Skybrush Server"
authors = ["Tamas Nepusz <[email protected]>"]
license = "MIT"
packages = [
# Change this to the name of the folder in src/ containing your extension
{ include = "skybrush_ext_rc_gamepad", from = "src" },
]
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "collmot"
url = "https://pypi.collmot.com/simple"
priority = "explicit"
[[tool.poetry.source]]
name = "fury"
url = "https://pypi.fury.io/skybrush/"
priority = "supplemental"
[tool.poetry.dependencies]
python = "^3.9"
hidapi = ">=0.14.0"
[tool.poetry.group.dev.dependencies]
flockwave-server = { version = "^2.17.5", source = "collmot" }
[tool.poetry.plugins]
[tool.poetry.plugins."skybrush.server.ext"]
rc_gamepad = "skybrush_ext_rc_gamepad"
[tool.poetry.scripts]
skybrushd = "flockwave.server.launcher:start"
hid_test = "skybrush_ext_rc_gamepad.hid_test:main"
[tool.ruff]
ignore = ["B905", "C901", "E402", "E501"]
line-length = 80
select = ["B", "C", "E", "F", "W"]
extend-exclude = ["src/flockwave/server/ext/socketio/vendor"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"