-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
74 lines (66 loc) · 2.19 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
[tool.poetry]
name = "litexcnc"
version = "1.3.0.dev2"
description = "Generic CNC firmware and driver for FPGA cards which are supported by LiteX"
authors = ["Peter van Tol <petertgvantol@gmail.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [{include = "litexcnc", from = "src"}]
homepage = "https://github.com/Peter-van-Tol/LiteX-CNC"
repository = "https://github.com/Peter-van-Tol/LiteX-CNC"
documentation = "https://litex-cnc.readthedocs.io/en/latest/"
keywords = [
"FPGA",
"CNC",
"CNC-controller",
"CNC-machine",
"linuxcnc",
"linuxcnc-FPGA",
"litex"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Other Environment",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Other",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Code Generators",
"Topic :: System :: Hardware :: Hardware Drivers"
]
[tool.poetry.dependencies]
python = "^3.7"
packaging = "^21.3"
pydantic = "^1.10.2"
requests = {version="^2.28.1"}
click = {version="^8.1.3"}
meson = {version="^0.64.1"}
ninja = {version="^1.11.1"}
yapps = {version="^2.2.0"}
chardet = {version="^5.0.0"}
[tool.poetry.extras]
cli = []
[tool.poetry.scripts]
litexcnc = { callable = "litexcnc.__main__:cli", extras = ["cli"] }
[tool.poetry.group.docs.dependencies]
sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.1.1"
[tool.poetry.plugins."litexcnc.driver_files"]
default = "litexcnc.driver"
[tool.poetry.plugins."litexcnc.modules"]
gpio = "litexcnc.config.modules.gpio"
pwm = "litexcnc.config.modules.pwm"
stepgen = "litexcnc.config.modules.stepgen"
encoder = "litexcnc.config.modules.encoder"
[tool.poetry.plugins."litexcnc.boards"]
colorlight = "litexcnc.config.boards.colorlight"
rv901t = "litexcnc.config.boards.rv901t"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"