mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
17 lines
358 B
Python
17 lines
358 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='vsim',
|
||
|
version='0.0.1',
|
||
|
description='Open Source Verilog Module Library',
|
||
|
url='https://github.com/aolofsson/oh',
|
||
|
author='Andreas Olofsson',
|
||
|
package_dir={'': 'src'},
|
||
|
python_requires='>=3.7',
|
||
|
scripts=[],
|
||
|
packages=[
|
||
|
'vsim'
|
||
|
],
|
||
|
license='Apache License 2.0',
|
||
|
)
|