mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-18 07:56:30 +08:00
9fbd6de30c
Some changes are due to deprecations in Qt6 which were outright removed in PyQt, for instance QRegExp or the x()/y() QMouseEvent properties. Most of the diff is due to enumeration values now no longer being available directly in the parent namespace. This commit is purposefully restricted to the mechanical changes, no reformatting/… is done to keep the diff easy to validate.
70 lines
2.4 KiB
Python
Executable File
70 lines
2.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_namespace_packages
|
|
import sys
|
|
|
|
import versioneer
|
|
|
|
|
|
if sys.version_info[:2] < (3, 9):
|
|
raise Exception("You need Python 3.9+")
|
|
|
|
|
|
console_scripts = [
|
|
"artiq_client = artiq.frontend.artiq_client:main",
|
|
"artiq_compile = artiq.frontend.artiq_compile:main",
|
|
"artiq_coreanalyzer = artiq.frontend.artiq_coreanalyzer:main",
|
|
"artiq_coremgmt = artiq.frontend.artiq_coremgmt:main",
|
|
"artiq_rtiomap = artiq.frontend.artiq_rtiomap:main",
|
|
"artiq_ddb_template = artiq.frontend.artiq_ddb_template:main",
|
|
"artiq_master = artiq.frontend.artiq_master:main",
|
|
"artiq_mkfs = artiq.frontend.artiq_mkfs:main",
|
|
"artiq_rtiomon = artiq.frontend.artiq_rtiomon:main",
|
|
"artiq_sinara_tester = artiq.frontend.artiq_sinara_tester:main",
|
|
"artiq_session = artiq.frontend.artiq_session:main",
|
|
"artiq_route = artiq.frontend.artiq_route:main",
|
|
"artiq_run = artiq.frontend.artiq_run:main",
|
|
"artiq_flash = artiq.frontend.artiq_flash:main",
|
|
"aqctl_coreanalyzer_proxy = artiq.frontend.aqctl_coreanalyzer_proxy:main",
|
|
"aqctl_corelog = artiq.frontend.aqctl_corelog:main",
|
|
"aqctl_moninj_proxy = artiq.frontend.aqctl_moninj_proxy:main",
|
|
"afws_client = artiq.frontend.afws_client:main",
|
|
]
|
|
|
|
gui_scripts = [
|
|
"artiq_browser = artiq.frontend.artiq_browser:main",
|
|
"artiq_dashboard = artiq.frontend.artiq_dashboard:main",
|
|
]
|
|
|
|
setup(
|
|
name="artiq",
|
|
version=versioneer.get_version(),
|
|
cmdclass=versioneer.get_cmdclass(),
|
|
author="M-Labs",
|
|
author_email="artiq@lists.m-labs.hk",
|
|
url="https://m-labs.hk/artiq",
|
|
description="Advanced Real-Time Infrastructure for Quantum physics",
|
|
long_description=open("README.rst", encoding="utf-8").read(),
|
|
license="LGPLv3+",
|
|
classifiers="""\
|
|
Development Status :: 5 - Production/Stable
|
|
Environment :: Console
|
|
Environment :: X11 Applications :: Qt
|
|
Intended Audience :: Science/Research
|
|
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
Operating System :: Microsoft :: Windows
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python :: 3.9
|
|
Topic :: Scientific/Engineering :: Physics
|
|
Topic :: System :: Hardware
|
|
""".splitlines(),
|
|
packages=find_namespace_packages(exclude=["doc.manual"]),
|
|
namespace_packages=[],
|
|
include_package_data=True,
|
|
ext_modules=[],
|
|
entry_points={
|
|
"console_scripts": console_scripts,
|
|
"gui_scripts": gui_scripts,
|
|
}
|
|
)
|