-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathmeta.yaml
58 lines (50 loc) · 1.4 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{% set name = "PyQ" %}
package:
name: '{{ name|lower }}'
version: '5.0.0'
source:
path: .
build:
number: 0
script:
- python -m pip install -f file://`pwd`/dist pyq
detect_binary_files_with_prefix: false
has_prefix_files:
- q/pyq-config.q
requirements:
build:
- python
- setuptools_scm
- kdb
run:
- python
- kdb
test:
requires:
- kdb
- pytest
- pytest-pyq
- numpy
commands:
- echo .z.l | q
# NB: For this to work, use conda build . --no-long-test-prefix
- pyq --versions
- pyq -mpytest --pyargs pyq
about:
home: https://github.com/KxSystems/pyq
license: Apache Software License
license_family: APACHE
license_file: 'LICENSE'
summary: PyQ - Python for kdb+
description: |
PyQ - Python for kdb+
=====================
PyQ brings the [Python programming language](https://www.python.org/about)
to the [kdb+ database](https://kx.com). It allows developers to seamlessly integrate Python and q codes in one
application. This is achieved by bringing the Python and q interpreters in the same process so that codes written
in either of the languages operate on the same data. In PyQ, Python and q objects live in the same memory space
and share the same data.
doc_url: 'https://github.com/KxSystems/pyq/tree/master/docs'
dev_url: 'https://github.com/KxSystems/pyq'
extra:
recipe-maintainers: '[email protected]'