2014-12-10 12:13:10 +08:00
|
|
|
#!/usr/bin/env python3
|
2014-05-28 02:40:42 +08:00
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from glob import glob
|
2014-12-10 12:13:10 +08:00
|
|
|
import os
|
|
|
|
|
2014-05-28 02:40:42 +08:00
|
|
|
|
|
|
|
setup(
|
2014-12-10 12:13:10 +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",
|
|
|
|
install_requires = [
|
2014-12-20 12:14:27 +08:00
|
|
|
"sphinx", "pyserial", "numpy", "scipy", "prettytable"
|
2014-12-10 12:13:10 +08:00
|
|
|
],
|
|
|
|
extras_require = {},
|
|
|
|
dependency_links = [],
|
|
|
|
packages = find_packages(),
|
|
|
|
namespace_packages = [],
|
|
|
|
test_suite = "artiq.test",
|
|
|
|
include_package_data = True,
|
|
|
|
ext_modules=[],
|
|
|
|
scripts=glob(os.path.join("frontend", "*.py"))
|
|
|
|
)
|