global: pep8 (E401)
[litex.git] / setup.py
1 #!/usr/bin/env python3
2
3 import sys
4 import os
5 from setuptools import setup
6 from setuptools import find_packages
7
8 here = os.path.abspath(os.path.dirname(__file__))
9 README = open(os.path.join(here, "README")).read()
10
11 required_version = (3, 3)
12 if sys.version_info < required_version:
13 raise SystemExit("MiSoC requires python {0} or greater".format(
14 ".".join(map(str, required_version))))
15
16 setup(
17 name="misoclib",
18 version="unknown",
19 description="a high performance and small footprint SoC based on Migen",
20 long_description=README,
21 author="Sebastien Bourdeauducq",
22 author_email="sb@m-labs.hk",
23 url="http://m-labs.hk",
24 download_url="https://github.com/m-labs/misoc",
25 packages=find_packages(here),
26 license="BSD",
27 platforms=["Any"],
28 keywords="HDL ASIC FPGA hardware design",
29 classifiers=[
30 "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
31 "Environment :: Console",
32 "Development Status :: Alpha",
33 "Intended Audience :: Developers",
34 "License :: OSI Approved :: BSD License",
35 "Operating System :: OS Independent",
36 "Programming Language :: Python",
37 ],
38 )