amaranth/setup.py

17 lines
350 B
Python
Raw Normal View History

2018-12-11 13:50:56 -07:00
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(),
)