diff --git a/Makefile b/Makefile deleted file mode 100644 index 7678e770..00000000 --- a/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -# QuantEcon.py Makefile - -install: - python setup.py install - -test: - @echo "Running nosetests on test suite ..." - nosetests -v diff --git a/quantecon/bld.bat b/quantecon/bld.bat deleted file mode 100644 index 9e02a957..00000000 --- a/quantecon/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://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html -:: for a list of environment variables that are set during the build process. \ No newline at end of file diff --git a/quantecon/build.sh b/quantecon/build.sh deleted file mode 100644 index c57e6fb7..00000000 --- a/quantecon/build.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -$PYTHON setup.py install - -# Add more build steps here, if they are necessary. diff --git a/quantecon/meta.yaml b/quantecon/meta.yaml deleted file mode 100644 index 28aa7a01..00000000 --- a/quantecon/meta.yaml +++ /dev/null @@ -1,66 +0,0 @@ -package: - name: quantecon - version: !!str 0.1.2 - -source: - fn: quantecon-0.1.2.tar.gz - url: https://pypi.python.org/packages/source/q/quantecon/quantecon-0.1.2.tar.gz - md5: 245bcef5f18d1afe858cf95453c28934 -# patches: - # List any patch files here - # - fix.patch - -# build: - #preserve_egg_dir: True - #entry_points: - # Put any entry points (scripts to be generated automatically) here. The - # syntax is module:function. For example - # - # - quantecon = quantecon:main - # - # Would create an entry point called quantecon that calls quantecon.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 - # - numpy - # - scipy - # - pandas - - run: - - python - - numpy - - scipy - - pandas - -test: - # Python imports - imports: - - quantecon - - #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/jstac/quant-econ - license: BSD - summary: 'Code for quantecon.org' - -# See -# https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html for -# more information about meta.yaml \ No newline at end of file