Add missing dependencies and their repositories

- By adding the dependency_links statement,
setup.py can now automatically fetch gbulb and cairoplot3
and install them. This makes users life easier.
pull/11/merge
Yann Sionneau 2015-02-06 13:16:55 +01:00 committed by Sebastien Bourdeauducq
parent f9d3bd107e
commit 5cec341f73
1 changed files with 13 additions and 5 deletions

View File

@ -4,6 +4,14 @@ from setuptools import setup, find_packages
import os
requirements = [
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",
"python-dateutil", "prettytable", "h5py"
]
if os.name != 'nt':
requirements += ["pygobject", "gbulb", "cairoplot"]
setup(
name="artiq",
version="0.0+dev",
@ -13,12 +21,12 @@ setup(
description="A control system for trapped-ion experiments",
long_description=open("README.rst").read(),
license="BSD",
install_requires=[
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",
"python-dateutil", "prettytable", "h5py"
],
install_requires=requirements,
extras_require={},
dependency_links=[],
dependency_links=[
"git+https://github.com/m-labs/gbulb.git#egg=gbulb",
"git+https://github.com/m-labs/cairoplot3.git#egg=cairoplot"
],
packages=find_packages(),
namespace_packages=[],
test_suite="artiq.test",