2015-12-20 23:20:38 +08:00
|
|
|
#!/usr/bin/env python3.5
|
2014-05-28 02:40:42 +08:00
|
|
|
|
2015-12-02 22:15:22 +08:00
|
|
|
from setuptools import setup, find_packages
|
2015-06-03 21:56:54 +08:00
|
|
|
import sys
|
2015-06-02 00:20:22 +08:00
|
|
|
import os
|
2014-12-10 12:13:10 +08:00
|
|
|
|
2015-11-09 11:33:38 +08:00
|
|
|
import versioneer
|
|
|
|
|
2015-08-07 15:51:56 +08:00
|
|
|
|
2015-12-20 23:26:48 +08:00
|
|
|
if sys.version_info[:3] < (3, 5, 1):
|
|
|
|
raise Exception("You need Python 3.5.1+")
|
2014-05-28 02:40:42 +08:00
|
|
|
|
2015-08-17 15:44:40 +08:00
|
|
|
|
2015-02-06 20:16:55 +08:00
|
|
|
requirements = [
|
2015-02-16 08:31:19 +08:00
|
|
|
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",
|
2015-05-22 17:05:15 +08:00
|
|
|
"python-dateutil", "prettytable", "h5py", "pydaqmx", "pyelftools",
|
2015-09-27 23:22:13 +08:00
|
|
|
"quamash", "pyqtgraph", "pygit2", "aiohttp",
|
2015-11-16 04:09:40 +08:00
|
|
|
"llvmlite_artiq", "pythonparser", "python-Levenshtein",
|
|
|
|
"lit", "OutputCheck",
|
2015-02-16 08:31:19 +08:00
|
|
|
]
|
|
|
|
|
2015-02-07 01:37:35 +08:00
|
|
|
scripts = [
|
2015-02-16 08:31:19 +08:00
|
|
|
"artiq_client=artiq.frontend.artiq_client:main",
|
2015-04-07 15:41:32 +08:00
|
|
|
"artiq_compile=artiq.frontend.artiq_compile:main",
|
2015-12-24 18:51:11 +08:00
|
|
|
"artiq_coreanalyzer=artiq.frontend.artiq_coreanalyzer:main",
|
|
|
|
"artiq_coreconfig=artiq.frontend.artiq_coreconfig:main",
|
|
|
|
"artiq_corelog=artiq.frontend.artiq_corelog:main",
|
2015-02-16 08:31:19 +08:00
|
|
|
"artiq_ctlmgr=artiq.frontend.artiq_ctlmgr:main",
|
2015-05-22 17:05:15 +08:00
|
|
|
"artiq_gui=artiq.frontend.artiq_gui:main",
|
2015-08-17 15:44:40 +08:00
|
|
|
"artiq_influxdb=artiq.frontend.artiq_influxdb:main",
|
2015-02-16 08:31:19 +08:00
|
|
|
"artiq_master=artiq.frontend.artiq_master:main",
|
2015-04-30 20:03:11 +08:00
|
|
|
"artiq_mkfs=artiq.frontend.artiq_mkfs:main",
|
2015-02-16 08:31:19 +08:00
|
|
|
"artiq_rpctool=artiq.frontend.artiq_rpctool:main",
|
|
|
|
"artiq_run=artiq.frontend.artiq_run:main",
|
2016-01-05 07:52:53 +08:00
|
|
|
"artiq_flash=artiq.frontend.artiq_flash:main",
|
2015-02-16 08:31:19 +08:00
|
|
|
"lda_controller=artiq.frontend.lda_controller:main",
|
|
|
|
"novatech409b_controller=artiq.frontend.novatech409b_controller:main",
|
|
|
|
"pdq2_client=artiq.frontend.pdq2_client:main",
|
|
|
|
"pdq2_controller=artiq.frontend.pdq2_controller:main",
|
2015-05-21 23:08:47 +08:00
|
|
|
"pxi6733_controller=artiq.frontend.pxi6733_controller:main",
|
2015-04-22 10:00:56 +08:00
|
|
|
"thorlabs_tcube_controller=artiq.frontend.thorlabs_tcube_controller:main",
|
2015-02-16 08:31:19 +08:00
|
|
|
]
|
2015-02-07 01:37:35 +08:00
|
|
|
|
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(),
|
2014-12-30 18:53:27 +08:00
|
|
|
author="M-Labs / NIST Ion Storage Group",
|
|
|
|
author_email="sb@m-labs.hk",
|
|
|
|
url="http://m-labs.hk/artiq",
|
|
|
|
description="A control system for trapped-ion experiments",
|
|
|
|
long_description=open("README.rst").read(),
|
2015-10-23 09:09:45 +08:00
|
|
|
license="GPL",
|
2015-02-06 20:16:55 +08:00
|
|
|
install_requires=requirements,
|
2014-12-30 18:53:27 +08:00
|
|
|
extras_require={},
|
2015-07-17 01:56:46 +08:00
|
|
|
dependency_links=[
|
2015-11-12 22:00:04 +08:00
|
|
|
"git+https://github.com/m-labs/pyqtgraph.git@develop#egg=pyqtgraph",
|
2015-08-28 23:59:54 +08:00
|
|
|
"git+https://github.com/m-labs/llvmlite.git@artiq#egg=llvmlite_artiq"
|
2015-07-17 01:56:46 +08:00
|
|
|
],
|
2014-12-30 18:53:27 +08:00
|
|
|
packages=find_packages(),
|
|
|
|
namespace_packages=[],
|
|
|
|
test_suite="artiq.test",
|
2015-11-09 10:47:14 +08:00
|
|
|
include_package_data=True,
|
2014-12-10 12:13:10 +08:00
|
|
|
ext_modules=[],
|
2015-01-17 08:11:21 +08:00
|
|
|
entry_points={
|
2015-02-07 01:37:35 +08:00
|
|
|
"console_scripts": scripts,
|
2015-12-02 22:15:22 +08:00
|
|
|
}
|
2014-12-10 12:13:10 +08:00
|
|
|
)
|