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