Skip to content

Upload package to conda #87

@danieljfarrell

Description

@danieljfarrell

I have made a conda-build script which can be used to upload jsonrpcserver to Anaconda Cloud so it can be installed with the Conda package manager.

The script is below. Please let me know if I can assist you in upload the package to the official channel.

conda install -c danieljfarrell_teraview jsonrpcserver

{% set name = "jsonrpcserver"%}
{% set version = "4.0.4" %}

package:
  name: "{{ name|lower }}"
  version: "{{ version }}"

source:
  url: https://github.com/bcb/jsonrpcserver/archive/4.0.4.tar.gz
  sha256: 2ed9c08b6a3ee889fd4e752b84b4335bd1ddbe4e70a5956d4e2cf44d68fe9827

build:
  number: 0
  script: "python -m pip install . --no-deps --ignore-installed -vvv "

requirements:
  host:
    - python
    - apply_defaults<1
    - jsonschema>=2,<4
  run:
    - python
    - apply_defaults
    - jsonschema>=2,<4

about:
  home: https://github.com/bcb/jsonrpcserver
  license: MIT License
  license_family: MIT
  license_file: 
  summary: Process JSON-RPC requests in Python
  doc_url: https://jsonrpcserver.readthedocs.io/
  dev_url: 

extra:
  recipe-maintainers:
    - bcb

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions