diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 5e16767..25cdcd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,6 @@ authors = [ dependencies = [ "miasm", "setuptools", - "lldb-python", "cpuid @ git+https://github.com/taugoust/cpuid.py.git@master", ] @@ -32,6 +31,12 @@ focaccia = "focaccia:cli.main" requires = ["hatchling"] build-backend = "hatchling.build" +[tool.uv] +environments = [ + "sys_platform == 'linux' and platform_machine == 'x86_64'", + "sys_platform == 'linux' and platform_machine == 'aarch64'", +] + [tool.uv.sources] miasm = { path = "./miasm" } |