Upload package to conda
See original GitHub issueI 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:
- Created 4 years ago
- Comments:10 (6 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks Daniel
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.