Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
singlestore-labs
GitHub Repository: singlestore-labs/singlestoredb-python
Path: blob/main/conda.recipe/meta.yaml
469 views
1
{% set data = load_setup_py_data() %}
2
3
package:
4
name: singlestoredb
5
version: {{ data.get('version') }}
6
7
source:
8
path: ..
9
10
build:
11
number: {{ environ.get('PACKAGE_BUILD_NUMBER', '0') }}
12
13
requirements:
14
host:
15
- python {{ python }}
16
- pip
17
run:
18
- python
19
- pyjwt
20
- requests
21
- sqlparams
22
23
test:
24
imports:
25
- singlestoredb
26
requires:
27
- coverage
28
- pandas
29
- pytest
30
commands:
31
- pytest -q singlestoredb/tests/test_basics.py
32
33
about:
34
home: https://github.com/singlestore-labs/singlestoredb-python
35
license: Apache 2.0
36
license_file: ../LICENSE
37
summary: SingleStore Database Interface
38
doc_url: https://singlestoredb-python.labs.singlestore.com/index.html
39
dev_url: https://github.com/singlestore-labs/singlestoredb-python
40
41