manta/pyproject.toml

32 lines
590 B
TOML
Raw Normal View History

2023-02-14 23:14:39 +01:00
[project]
name = "mantaray"
version = "0.0.5"
2023-02-14 23:14:39 +01:00
authors = [
{ name="Fischer Moseley", email="fischerm@mit.edu" },
]
description = "An In-Situ Debugging Tool for Programmable Hardware"
readme = "README.md"
dependencies = [
"PyYAML",
"pyserial",
"pyvcd",
2023-08-02 16:39:07 +02:00
"scapy"
2023-02-14 23:14:39 +01:00
]
requires-python = ">=3.7"
[project.urls]
"Homepage" = "https://github.com/fischermoseley/manta"
[project.scripts]
manta = "manta:main"
2023-02-14 23:14:39 +01:00
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
manta = ["**/*.v"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"