diff --git a/bld.bat b/bld.bat new file mode 100644 index 00000000000..87b1481d740 --- /dev/null +++ b/bld.bat @@ -0,0 +1,8 @@ +"%PYTHON%" setup.py install +if errorlevel 1 exit 1 + +:: Add more build steps here, if they are necessary. + +:: See +:: http://docs.continuum.io/conda/build.html +:: for a list of environment variables that are set during the build process. diff --git a/build.sh b/build.sh new file mode 100644 index 00000000000..4d7fc032b8c --- /dev/null +++ b/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +$PYTHON setup.py install + +# Add more build steps here, if they are necessary. + +# See +# http://docs.continuum.io/conda/build.html +# for a list of environment variables that are set during the build process. diff --git a/meta.yaml b/meta.yaml new file mode 100644 index 00000000000..be43d66b5b9 --- /dev/null +++ b/meta.yaml @@ -0,0 +1,44 @@ +package: + name: plotly + version: "1.9.3" + +source: + fn: plotly-1.9.3.tar.gz + url: https://pypi.python.org/packages/source/p/plotly/plotly-1.9.3.tar.gz + md5: f40ac2d3f0b1212f59c9a74d8f44067a + +build: + # noarch_python: True + number: 0 + +requirements: + build: + - python + - setuptools + - requests + - six + - pytz + + run: + - python + - requests + - six + - pytz + +test: + imports: + - plotly + - plotly/graph_objs + - plotly/grid_objs + - plotly/matplotlylib + - plotly/matplotlylib/mplexporter + - plotly/matplotlylib/mplexporter/renderers + - plotly/offline + - plotly/plotly + - plotly/plotly/chunked_requests + - plotly/widgets + +about: + home: https://plot.ly/python/ + license: MIT + summary: 'Python plotting library for collaborative, interactive, publication-quality graphs.'