2014-12-10 12:13:10 +08:00
|
|
|
#!/usr/bin/env python3
|
2014-05-28 02:40:42 +08:00
|
|
|
|
2015-07-26 14:55:18 +08:00
|
|
|
from setuptools import setup, find_packages, Command
|
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-06-03 21:56:54 +08:00
|
|
|
if sys.version_info[:3] < (3, 4, 3):
|
|
|
|
raise Exception("You need at least Python 3.4.3 to run ARTIQ")
|
2014-05-28 02:40:42 +08:00
|
|
|
|
2015-07-26 14:55:18 +08:00
|
|
|
class PushDocCommand(Command):
|
|
|
|
description = "uploads the documentation to m-labs.hk"
|
|
|
|
user_options = []
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
def run(self):
|
|
|
|
os.system("rsync -avz doc/manual/_build/html/ shell.serverraum.org:~/web/m-labs.hk/artiq/manual")
|
|
|
|
|
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-07-29 18:54:00 +08:00
|
|
|
"quamash", "pyqtgraph", "pythonparser",
|
|
|
|
"llvmlite_artiq", "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-08-02 21:35:49 +08:00
|
|
|
"artiq_coretool=artiq.frontend.artiq_coretool: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-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",
|
|
|
|
"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",
|
|
|
|
version="0.0+dev",
|
|
|
|
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(),
|
|
|
|
license="BSD",
|
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=[
|
|
|
|
"git+https://github.com/pyqtgraph/pyqtgraph.git@a6d5e28#egg=pyqtgraph"
|
|
|
|
],
|
2014-12-30 18:53:27 +08:00
|
|
|
packages=find_packages(),
|
|
|
|
namespace_packages=[],
|
|
|
|
test_suite="artiq.test",
|
2015-06-02 00:20:22 +08:00
|
|
|
package_data={"artiq": [os.path.join("gui", "icon.png")]},
|
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-07-26 14:55:18 +08:00
|
|
|
},
|
|
|
|
cmdclass={"push_doc":PushDocCommand}
|
2014-12-10 12:13:10 +08:00
|
|
|
)
|