setup: update pyvcd dependency, for var_type="string".
[nmigen.git] / setup.py
1 import sys
2 from setuptools import setup, find_packages
3
4
5 if sys.version_info[:3] < (3, 6):
6 raise SystemExit("nMigen requires Python 3.6+")
7
8
9 setup(
10 name="nmigen",
11 version="0.1",
12 author="whitequark",
13 author_email="whitequark@whitequark.org",
14 description="Python toolbox for building complex digital hardware",
15 #long_description="""TODO""",
16 license="BSD",
17 install_requires=["pyvcd>=0.1.4", "bitarray"],
18 packages=find_packages(),
19 project_urls={
20 #"Documentation": "https://glasgow.readthedocs.io/",
21 "Source Code": "https://github.com/m-labs/nmigen",
22 "Bug Tracker": "https://github.com/m-labs/nmigen/issues",
23 }
24 )