amaranth/setup.py
2018-12-12 03:18:44 +00:00

17 lines
350 B
Python

import os
from os import path
from setuptools import setup, find_packages
setup(
name="nmigen",
version="0.1",
author="whitequark",
author_email="whitequark@whitequark.org",
description="Python toolbox for building complex digital hardware",
#long_description="""TODO""",
license="BSD",
packages=find_packages(),
)