Files
3d_audio/lib_sw_pll/setup.py
Steven Dan d8b2974133 init
2025-12-11 09:43:42 +08:00

18 lines
359 B
Python

# Copyright 2023 XMOS LIMITED.
# This Software is subject to the terms of the XMOS Public Licence: Version 1.
from setuptools import setup, find_packages
setup(
name="sw_pll",
version="2.0.0",
packages=["sw_pll"],
package_dir={
"": "python"
},
install_requires=[
"numpy",
"matplotlib",
"pyvcd"
]
)