setup.py: fix version (0.1)
[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="litex",
14 version="0.1",
15 description="Python tools to design FPGA cores and SoCs",
16 long_description=open("README").read(),
17 author="Florent Kermarrec",
18 author_email="florent@enjoy-digital.fr",
19 url="http://enjoy-digital.fr",
20 download_url="https://github.com/enjoy-digital/litex",
21 license="BSD",
22 platforms=["Any"],
23 keywords="HDL ASIC FPGA hardware design",
24 classifiers=[
25 "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
26 "Environment :: Console",
27 "Development Status :: Beta",
28 "Intended Audience :: Developers",
29 "License :: OSI Approved :: BSD License",
30 "Operating System :: OS Independent",
31 "Programming Language :: Python",
32 ],
33 packages=find_packages(),
34 include_package_data=True,
35 entry_points={
36 "console_scripts": [
37 "litex_term=litex.soc.tools.litex_term:main",
38 "mkmscimg=litex.soc.tools.mkmscimg:main",
39 "litex_server=litex.soc.tools.remote.litex_server:main",
40 "litex_client=litex.soc.tools.remote.litex_client:main"
41 ],
42 },
43 )