forked from greatscottgadgets/luna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (27 loc) · 1.05 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
[tool.poetry]
name = "luna"
version = "0.1.0-dev.0"
description = "Amaranth HDL framework for FPGA-based USB solutions"
authors = ["Katherine Temkin <[email protected]>"]
license = "BSD"
[tool.poetry.dependencies]
python = "^3.7"
pyserial = "^3.5"
pyusb = "^1.1.1"
pyvcd = "^0.2.4"
libusb1 = "^1.9.2"
apollo-fpga = "^0.0.5"
ziglang = "^0.8.0"
amaranth = {git = "https://github.com/amaranth-lang/amaranth.git", branch="main"}
amaranth-soc = {git = "https://github.com/amaranth-lang/amaranth-soc.git", branch="main"}
amaranth-boards = {git = "https://github.com/amaranth-lang/amaranth-boards.git", branch="main"}
usb-protocol = {git = "https://github.com/usb-tools/python-usb-protocol"}
[tool.poetry.dev-dependencies]
tox = "^3.22.0"
minerva = {git = "https://github.com/lambdaconcept/minerva.git"}
amaranth-stdio = {git = "https://github.com/amaranth-lang/amaranth-stdio.git", branch="main"}
lambdasoc = {git = "https://github.com/ktemkin/lambdasoc.git"}
prompt-toolkit = "^3.0.16"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"