added files for packaging: setuptools, travis, conda

This commit is contained in:
2020-10-01 19:01:35 +02:00
parent 48feb5567b
commit d0943837be
5 changed files with 85 additions and 0 deletions

2
.conda-recipe/bld.bat Normal file
View File

@ -0,0 +1,2 @@
"%PYTHON%" setup.py install
if errorlevel 1 exit 1

2
.conda-recipe/build.sh Normal file
View File

@ -0,0 +1,2 @@
$PYTHON setup.py install

30
.conda-recipe/meta.yaml Normal file
View File

@ -0,0 +1,30 @@
{% set data = load_setup_py_data() %}
package:
name: sanipy
version: {{ data["version"] }}
about:
home: {{ data["url"] }}
summary: {{ data["description"] }}
source:
path: ..
build:
noarch: python
entry_points:
- sanipy = sani:main
requirements:
build:
- python >=3.6
- setuptools
run:
- python >=3.6
- pyepics
- colorama
- numpy
- pandas

38
.travis.yml Normal file
View File

@ -0,0 +1,38 @@
language: python
python:
- 3.6
# Build only tagged commits
if: tag IS present
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- rm miniconda.sh # clean up here, so no warning is triggered during the final clean-up
- export PATH=$HOME/miniconda/bin:$PATH # if `source $HOME/miniconda/etc/profile.d/conda.sh` instead, anaconda is not found in deploy
- conda config --set always_yes yes
- conda config --set changeps1 no
- conda config --set anaconda_upload no
- conda config --append channels conda-forge
- conda config --append channels paulscherrerinstitute
install:
- conda update -q conda
- conda install -q python=$TRAVIS_PYTHON_VERSION conda-build conda-verify anaconda-client
- conda info -a
script:
- conda build .conda-recipe
deploy:
provider: script
script: anaconda -t $ANACONDA_TOKEN upload $HOME/miniconda/conda-bld/**/sanipy-*.tar.bz2
on:
branch: master
tags: true
notifications:
email: false

13
setup.py Normal file
View File

@ -0,0 +1,13 @@
from setuptools import setup, find_packages
setup(
name="sanipy",
version="0.0.1",
url="https://github.com/augustin_s/sanipy",
description="A command-line tool for epics connection testing",
author="Paul Scherrer Institute",
packages=find_packages(),
py_modules=["sani", "commands"]
)