This commit is contained in:
Steven Dan
2025-12-11 09:43:42 +08:00
commit d8b2974133
1822 changed files with 280037 additions and 0 deletions

17
lib_sw_pll/setup.py Normal file
View File

@@ -0,0 +1,17 @@
# 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"
]
)