2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-05 01:36:39 +08:00
artiq/conda/artiq/meta.yaml
whitequark 8938b69559 conda: simplify recipes.
conda-build appears to no longer require the workaround with
environ.get("GIT_*", "") to work.
2018-02-22 12:45:27 +00:00

56 lines
1.4 KiB
YAML

package:
name: artiq
version: {{ environ["GIT_DESCRIBE_TAG"] }}
source:
git_url: ../..
{% set data = load_setup_py_data() %}
build:
noarch: python
number: {{ environ["GIT_DESCRIBE_NUMBER"] }}
string: {{ environ["GIT_DESCRIBE_NUMBER"] }}+git{{ environ["GIT_FULL_HASH"][:8] }}
entry_points:
# NOTE: conda-build cannot distinguish between console and gui scripts
{% for entry_point_type, entry_points in data.get("entry_points", dict()).items() -%}
{% for entry_point in entry_points -%}
- {{ entry_point }}
{% endfor %}
{% endfor %}
script: $PYTHON setup.py install --no-compile --single-version-externally-managed --record=record.txt
requirements:
build:
- python >=3.5.3,<3.6
- setuptools 33.1.1
run:
- python >=3.5.3,<3.6
- llvmlite-artiq 0.20.0
- binutils-or1k-linux >=2.27
- pythonparser >=1.1
- openocd 0.10.0 6
- lit
- outputcheck
- scipy
- numpy
- prettytable
- asyncserial
- h5py
- python-dateutil
- pyqt >=5.5
- quamash
- pyqtgraph 0.10.0
- pygit2
- aiohttp
- levenshtein
test:
imports:
- artiq
about:
home: https://m-labs.hk/artiq
license: LGPL
summary: 'ARTIQ (Advanced Real-Time Infrastructure for Quantum physics) is a next-generation control system for quantum information experiments. It is being developed in partnership with the Ion Storage Group at NIST, and its applicability reaches beyond ion trapping.'