mirror of
https://github.com/myhdl/myhdl.git
synced 2024-12-14 07:44:38 +08:00
12 lines
261 B
Python
12 lines
261 B
Python
from distutils.core import setup
|
|
|
|
setup(name="myhdl",
|
|
version="0.1",
|
|
description="myhdl python library",
|
|
author="Jan Decaluwe",
|
|
author_email="jan@jandecaluwe.com",
|
|
url="www.jandecaluwe.com",
|
|
packages=['myhdl']
|
|
)
|
|
|