-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
103 lines (91 loc) · 2.83 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
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
[tool.poetry]
name = "letsgo-trains"
version = "0.1"
description = "Lego train layout design and automation."
license = "BSD-2-Clause"
authors = [
"Alex Dutton <[email protected]>",
]
readme = "README.md"
homepage = "https://letsgo.shinypebble.uk/"
documentation = "https://letsgo.shinypebble.uk/docs/"
repository = "https://github.com/alexsdutton/letsgo-trains"
keywords = [
"LEGO",
"trains",
"Powered Up",
"automation",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment :: Simulation",
]
packages = [
{include = "letsgo"},
]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
blinker = "*"
pyyaml = "*"
cached-property = "*"
lxml = "*"
click = "*"
cairosvg = "*"
numpy = "*"
ipython = "*"
pycairo = "*"
pyusb = "*"
sklearn = "*"
maestro-servo = "*"
lego-wireless = "*"
gobject = "*"
pygobject = "*"
dbus-python = "*"
pyqtree = "*"
[tool.poetry.dev-dependencies]
coverage = "^5.3.1"
Sphinx = "^3.4.1"
[tool.poetry.scripts]
letsgo-trains-gtk = "letsgo.gtk.__main__:main"
letsgo-trains-track-library = "letsgo.bin.track_library:track_library"
[tool.poetry.plugins."letsgo.piece"]
straight = "letsgo.pieces:Straight"
half-straight = "letsgo.pieces:HalfStraight"
quarter-straight = "letsgo.pieces:QuarterStraight"
curve = "letsgo.pieces:Curve"
half-curve = "letsgo.pieces:HalfCurve"
r24-curve = "letsgo.pieces:R24Curve"
r32-curve = "letsgo.pieces:R32Curve"
r56-curve = "letsgo.pieces:R56Curve"
r72-curve = "letsgo.pieces:R72Curve"
r88-curve = "letsgo.pieces:R88Curve"
r104-curve = "letsgo.pieces:R104Curve"
r120-curve = "letsgo.pieces:R120Curve"
left-points = "letsgo.pieces:LeftPoints"
right-points = "letsgo.pieces:RightPoints"
crossover = "letsgo.pieces:Crossover"
short-crossover = "letsgo.pieces:ShortCrossover"
[tool.poetry.plugins."letsgo.layout_parser"]
letsgo = "letsgo.layout_parser:LetsGoLayoutParser"
ncontrol = "letsgo.layout_parser:NControlLayoutParser"
[tool.poetry.plugins."letsgo.letsgo.layout_serializer"]
letsgo = "letsgo.layout_serializer:LetsGoLayoutSerializer"
ncontrol = "letsgo.layout_serializer:NControlLayoutSerializer"
[tool.poetry.plugins."letsgo.controller"]
maestro = "letsgo.control:MaestroController"
powered-up = "letsgo.control:PoweredUpController"
[tool.poetry.plugins."letsgo.gtk.controller"]
powered-up = "letsgo.gtk.control:GtkPoweredUpController"
maestro = "letsgo.gtk.control:GtkMaestroController"
[tool.poetry.plugins."letsgo.sensor"]
hall-effect = "letsgo.sensor:HallEffectSensor"
beam = "letsgo.sensor:BeamSensor"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"