move software into misoc
[litex.git] / setup.py
1 #!/usr/bin/env python3
2
3 import sys
4 from setuptools import setup
5 from setuptools import find_packages
6
7
8 if sys.version_info[:3] < (3, 3):
9 raise SystemExit("You need Python 3.3+")
10
11
12 setup(
13 name="misoc",
14 version="1.0",
15 description="a high performance and small footprint SoC based on Migen",
16 long_description=open("README.rst").read(),
17 author="Sebastien Bourdeauducq",
18 author_email="sb@m-labs.hk",
19 url="http://m-labs.hk",
20 download_url="https://github.com/m-labs/misoc",
21 packages=find_packages(),
22 license="BSD",
23 platforms=["Any"],
24 keywords="HDL ASIC FPGA hardware design",
25 classifiers=[
26 "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
27 "Environment :: Console",
28 "Development Status :: Alpha",
29 "Intended Audience :: Developers",
30 "License :: OSI Approved :: BSD License",
31 "Operating System :: OS Independent",
32 "Programming Language :: Python",
33 ],
34 )