question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Upload package to conda

See original GitHub issue

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

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:10 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
bcbcommented, Sep 11, 2019

Thanks Daniel

1reaction
danieljfarrellcommented, Sep 7, 2019

Excellent! Yes it is fairly straight forward. You may want to consider adding to conda-forge https://conda-forge.org/ rather than your own channel.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Publishing Your Python Package on conda and conda-forge
Upload Your Package to Anaconda · Create an account with Anaconda · Install the Anaconda Client conda install anaconda-client · Log into your ......
Read more >
Building conda packages from scratch
Optional---Uploading new packages to Anaconda.org. More information. Overview . This tutorial describes how to build a conda package for Click by writing ......
Read more >
Working with packages - Anaconda Documentation
To upload package files to Anaconda.org, use the terminal window or an Anaconda Prompt and the upload command: anaconda login anaconda upload PACKAGENAME...
Read more >
Contributing packages - conda-forge
To submit a package to the conda-forge channel, add its recipe and licence to the staged-recipes repository and create a pull request. Once...
Read more >
Building a conda package and uploading it to Anaconda Cloud
Building a conda package and uploading it to Anaconda Cloud · Step 1: Install the prerequisites · Step 2: Run the bash script...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found