diff --git a/conda-recipe/bld.bat b/conda-recipe/bld.bat deleted file mode 100644 index 2d84cc9..0000000 --- a/conda-recipe/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -"%PYTHON%" setup.py install -if errorlevel 1 exit 1 - -:: Add more build steps here, if they are necessary. - -:: See -:: https://conda.io/docs/user-guide/tasks/build-packages/index.html -:: for a list of environment variables that are set during the build process. diff --git a/conda-recipe/build.sh b/conda-recipe/build.sh deleted file mode 100644 index 4c6226d..0000000 --- a/conda-recipe/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -$PYTHON setup.py install - -# Add more build steps here, if they are necessary. - -# See -# https://conda.io/docs/user-guide/tasks/build-packages/index.html -# for a list of environment variables that are set during the build process. diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml deleted file mode 100644 index cab179e..0000000 --- a/conda-recipe/meta.yaml +++ /dev/null @@ -1,61 +0,0 @@ -package: - name: cycler - version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} - - -source: - git_url: ../ - -# patches: - # List any patch files here - # - fix.patch - -build: - string: {{ environ.get('GIT_BUILD_STR', '') }}_py{{ py }} - # preserve_egg_dir: True - # entry_points: - # Put any entry points (scripts to be generated automatically) here. The - # syntax is module:function. For example - # - # - cycler = cycler:main - # - # Would create an entry point called cycler that calls cycler.main() - - - # If this is a new build for the same version, increment the build - # number. If you do not include this key, it defaults to 0. - # number: 1 - -requirements: - build: - - python - - setuptools - - run: - - python - -test: - # Python imports - imports: - - cycler - - # commands: - # You can put test commands to be run here. Use this to test that the - # entry points work. - - - # You can also put a file called run_test.py in the recipe that will be run - # at test time. - - # requires: - # Put any additional test requirements here. For example - # - nose - -about: - home: https://github.com/matplotlib/cycler - license: BSD - summary: 'Composable style cycles' - -# See -# https://conda.io/docs/building/build.html for -# more information about meta.yaml