amaranth/setup.py

25 lines
680 B
Python
Raw Normal View History

2018-12-13 19:32:37 -07:00
import sys
2018-12-11 13:50:56 -07:00
from setuptools import setup, find_packages
if sys.version_info[:3] < (3, 6):
raise SystemExit("nMigen requires Python 3.6+")
2018-12-13 00:47:07 -07:00
2018-12-11 13:50:56 -07:00
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",
install_requires=["pyvcd>=0.1.4", "bitarray"],
2018-12-11 13:50:56 -07:00
packages=find_packages(),
project_urls={
#"Documentation": "https://glasgow.readthedocs.io/",
"Source Code": "https://github.com/m-labs/nmigen",
"Bug Tracker": "https://github.com/m-labs/nmigen/issues",
}
2018-12-11 13:50:56 -07:00
)