-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
76 lines (69 loc) · 2.16 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
[project]
name = "litexcnc"
version = "1.3.2"
description = "Generic CNC firmware and driver for FPGA cards which are supported by LiteX"
authors = [
{ name = "Peter van Tol", email = "[email protected]" },
]
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"
]
requires-python = ">=3.7,<3.13"
dependencies = [
"packaging>=21.3",
"pydantic>=1.10.2,<2.0",
"requests>=2.28.1,<3.0",
"click~=8.1.3",
"meson~=0.64.1",
"ninja~=1.11.1",
"yapps~=2.2.0",
"chardet~=5.0.0",
]
[tool.poetry.extras]
cli = []
[project.scripts]
litexcnc = "litexcnc.__main__:cli"
[project.entry-points."litexcnc.driver_files"]
default = "litexcnc.driver"
[project.entry-points."litexcnc.modules"]
gpio = "litexcnc.config.modules.gpio"
pwm = "litexcnc.config.modules.pwm"
stepgen = "litexcnc.config.modules.stepgen"
encoder = "litexcnc.config.modules.encoder"
[project.entry-points."litexcnc.boards"]
colorlight = "litexcnc.config.boards.colorlight"
rv901t = "litexcnc.config.boards.rv901t"
[tool.poetry.group.docs.dependencies]
sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"