artiq/setup.py

77 lines
2.5 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2014-05-28 02:40:42 +08:00
2015-12-02 22:15:22 +08:00
from setuptools import setup, find_packages
import sys
2015-11-09 11:33:38 +08:00
import versioneer
2015-08-07 15:51:56 +08:00
2021-09-27 17:46:25 +08:00
if sys.version_info[:2] < (3, 7):
raise Exception("You need Python 3.7+")
2014-05-28 02:40:42 +08:00
2015-08-17 15:44:40 +08:00
# Depends on PyQt5, but setuptools cannot check for it.
requirements = [
2019-04-20 10:51:29 +08:00
"numpy", "scipy",
"python-dateutil", "prettytable", "h5py",
2020-12-12 21:50:11 +08:00
"qasync", "pyqtgraph", "pygit2",
"llvmlite", "pythonparser", "python-Levenshtein",
2015-02-16 08:31:19 +08:00
]
console_scripts = [
2017-06-05 21:34:28 +08:00
"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_ddb_template = artiq.frontend.artiq_ddb_template:main",
2017-06-05 21:34:28 +08:00
"artiq_master = artiq.frontend.artiq_master:main",
"artiq_mkfs = artiq.frontend.artiq_mkfs:main",
2018-09-15 10:44:59 +08:00
"artiq_rtiomon = artiq.frontend.artiq_rtiomon:main",
2020-01-21 16:13:04 +08:00
"artiq_sinara_tester = artiq.frontend.artiq_sinara_tester:main",
2017-06-05 21:34:28 +08:00
"artiq_session = artiq.frontend.artiq_session:main",
2018-09-04 19:04:27 +08:00
"artiq_route = artiq.frontend.artiq_route:main",
2017-06-05 21:34:28 +08:00
"artiq_run = artiq.frontend.artiq_run:main",
"artiq_flash = artiq.frontend.artiq_flash:main",
"aqctl_corelog = artiq.frontend.aqctl_corelog:main",
2022-02-07 14:28:00 +08:00
"afws_client = artiq.frontend.afws_client:main",
2015-02-16 08:31:19 +08:00
]
gui_scripts = [
2017-06-05 21:34:28 +08:00
"artiq_browser = artiq.frontend.artiq_browser:main",
"artiq_dashboard = artiq.frontend.artiq_dashboard:main",
]
2014-05-28 02:40:42 +08:00
setup(
2014-12-30 18:53:27 +08:00
name="artiq",
2015-11-09 11:33:38 +08:00
version=versioneer.get_version(),
2016-01-10 21:42:04 +08:00
cmdclass=versioneer.get_cmdclass(),
2016-04-21 22:35:16 +08:00
author="M-Labs",
author_email="artiq@lists.m-labs.hk",
2016-02-11 00:20:29 +08:00
url="https://m-labs.hk/artiq",
2016-04-21 22:35:16 +08:00
description="Advanced Real-Time Infrastructure for Quantum physics",
2016-05-11 21:32:33 +08:00
long_description=open("README.rst", encoding="utf-8").read(),
2017-07-18 17:31:04 +08:00
license="LGPLv3+",
2016-04-21 22:35:16 +08:00
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+)
2016-04-21 22:35:16 +08:00
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
2021-09-27 17:46:25 +08:00
Programming Language :: Python :: 3.7
2016-04-21 22:35:16 +08:00
Topic :: Scientific/Engineering :: Physics
Topic :: System :: Hardware
""".splitlines(),
install_requires=requirements,
2014-12-30 18:53:27 +08:00
extras_require={},
packages=find_packages(),
namespace_packages=[],
include_package_data=True,
ext_modules=[],
entry_points={
"console_scripts": console_scripts,
"gui_scripts": gui_scripts,
2015-12-02 22:15:22 +08:00
}
)