This repository was archived by the owner on Aug 11, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +91
-0
lines changed Expand file tree Collapse file tree 4 files changed +91
-0
lines changed Original file line number Diff line number Diff line change 1+ Conda Setup
2+ -----------
3+ (from: https://conda.io/docs/user-guide/install/linux.html )
4+
5+ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
6+ chmod a+x Miniconda3-latest-Linux-x86_64.sh
7+ ./Miniconda3-latest-Linux-x86_64.sh
8+ export PATH=~ /miniconda3/bin:$PATH
9+
10+ (from: https://conda.io/docs/user-guide/tutorials/build-pkgs-skeleton.html )
11+
12+ conda install conda-build
13+ conda install anaconda-client
14+
15+
16+ Conda Package Build
17+ -------------------
18+ conda update conda
19+ conda update conda-build
20+
21+ cd python3
22+
23+ conda-build paperspace
24+
25+ conda build purge
26+
27+
28+ Upload Package to Anaconda.org
29+ ------------------------------
30+ anaconda login
31+
32+ anaconda upload /home/sanfilip/miniconda3/conda-bld/linux-64/paperspace-X.X.X-py36_0.tar.bz2
33+
34+ anaconda logout
35+
Original file line number Diff line number Diff line change 1+ " %PYTHON% " setup.py install --single-version-externally-managed --record=record.txt
2+ if errorlevel 1 exit 1
Original file line number Diff line number Diff line change 1+ $PYTHON setup.py install --single-version-externally-managed --record=record.txt
Original file line number Diff line number Diff line change 1+ {% set name = "paperspace" %}
2+ {% set version = "0.0.8" %}
3+ {% set file_ext = "tar.gz" %}
4+ {% set hash_type = "sha256" %}
5+ {% set hash_value = "2a096ac789499ff03f2419b3499415d5fa717218de6f0400e4661e8fd73385ad" %}
6+
7+ package :
8+ name : ' {{ name|lower }}'
9+ version : ' {{ version }}'
10+
11+ source :
12+ fn : ' {{ name }}-{{ version }}.{{ file_ext }}'
13+ url : https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }}
14+ ' {{ hash_type }} ' : ' {{ hash_value }}'
15+
16+ build :
17+ number : 0
18+ entry_points :
19+ - paperspace = paperspace.main:main
20+ script : python setup.py install --single-version-externally-managed --record=record.txt
21+
22+ requirements :
23+ host :
24+ - python
25+ - setuptools
26+ - requests
27+ - boto3
28+ - botocore
29+ - six
30+ run :
31+ - python
32+ - requests
33+ - boto3
34+ - botocore
35+ - six
36+
37+ test :
38+ imports :
39+ - paperspace
40+ commands :
41+
42+ about :
43+ home : https://github.com/paperspace/paperspace-python
44+ license : ISC License (ISCL)
45+ license_family : OTHER
46+ license_file : ' '
47+ summary : Paperspace API for Python
48+ description : " Paperspace API for Python"
49+ doc_url : ' '
50+ dev_url : ' '
51+
52+ extra :
53+ recipe-maintainers : ' '
You can’t perform that action at this time.
0 commit comments