setup: simpler version check, beta status
[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="migen",
14 version="1.0",
15 description="Python toolbox for building complex digital hardware",
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/migen",
21 packages=find_packages(),
22 test_suite="migen.test",
23 license="BSD",
24 platforms=["Any"],
25 keywords="HDL ASIC FPGA hardware design",
26 classifiers=[
27 "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
28 "Environment :: Console",
29 "Development Status :: Beta",
30 "Intended Audience :: Developers",
31 "License :: OSI Approved :: BSD License",
32 "Operating System :: OS Independent",
33 "Programming Language :: Python",
34 ],
35 )