forked from m-labs/misoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (37 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
import sys
from setuptools import setup
from setuptools import find_packages
if sys.version_info[:3] < (3, 5):
raise SystemExit("You need Python 3.5+")
setup(
name="misoc",
version="0.12",
description="a high performance and small footprint SoC based on Migen",
long_description=open("README").read(),
author="Sebastien Bourdeauducq",
author_email="[email protected]",
url="https://m-labs.hk",
download_url="https://github.com/m-labs/misoc",
license="BSD",
platforms=["Any"],
keywords="HDL ASIC FPGA hardware design",
classifiers=[
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Environment :: Console",
"Development Status :: Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=find_packages(),
install_requires=["pyserial", "asyncserial", "jinja2", "migen"],
include_package_data=True,
entry_points={
"console_scripts": [
"flterm = misoc.tools.flterm:main",
"mkmscimg = misoc.tools.mkmscimg:main",
],
},
)