1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00
oh/setup.py
Andreas.Olofsson 2c9fd39c87 Adding python package setup scripts
-Work in progress, learning
2020-02-01 09:43:37 -05:00

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',
)