1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00

Adding python package setup scripts

-Work in progress, learning
This commit is contained in:
Andreas.Olofsson 2020-02-01 09:43:37 -05:00
parent 7bd980fca2
commit 2c9fd39c87

16
setup.py Normal file
View File

@ -0,0 +1,16 @@
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',
)