artiq-netboot/setup.py

15 lines
371 B
Python
Raw Normal View History

2020-10-15 16:05:00 +08:00
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="artiq_netboot",
author="M-Labs",
description="Simple netboot tool compatible with ARTIQ/MiSoC and SZL bootloaders",
license="LGPLv3+",
packages=find_packages(),
entry_points={
2020-10-15 16:10:42 +08:00
"console_scripts": ["artiq_netboot = artiq_netboot.artiq_netboot:main"],
2020-10-15 16:05:00 +08:00
}
)