Path: blob/main/conda.recipe/meta.yaml
469 views
{% set data = load_setup_py_data() %}12package:3name: singlestoredb4version: {{ data.get('version') }}56source:7path: ..89build:10number: {{ environ.get('PACKAGE_BUILD_NUMBER', '0') }}1112requirements:13host:14- python {{ python }}15- pip16run:17- python18- pyjwt19- requests20- sqlparams2122test:23imports:24- singlestoredb25requires:26- coverage27- pandas28- pytest29commands:30- pytest -q singlestoredb/tests/test_basics.py3132about:33home: https://github.com/singlestore-labs/singlestoredb-python34license: Apache 2.035license_file: ../LICENSE36summary: SingleStore Database Interface37doc_url: https://singlestoredb-python.labs.singlestore.com/index.html38dev_url: https://github.com/singlestore-labs/singlestoredb-python394041