Skip to content

Instantly share code, notes, and snippets.

View rebelgiri's full-sized avatar
🎯
Focusing

Giriraj Pawar rebelgiri

🎯
Focusing
View GitHub Profile
@rebelgiri
rebelgiri / build-conda-package
Created November 5, 2019 16:55 — forked from giswqs/build-conda-package
Building a conda package and uploading it to Anaconda Cloud
#!/bin/bash
# change the package name to the existing PyPi package you would like to build and adjust the Python versions
pkg='whitebox'
array=( 3.5 3.6 3.7 )
echo "Building conda package ..."
cd ~
conda skeleton pypi $pkg
cd $pkg