diff --git a/recipes/d3rlpy/LICENSE b/recipes/d3rlpy/LICENSE deleted file mode 100644 index 5c44b5b632dd7..0000000000000 --- a/recipes/d3rlpy/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 Takuma Seno - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/recipes/d3rlpy/meta.yaml b/recipes/d3rlpy/meta.yaml deleted file mode 100644 index 49da73b437861..0000000000000 --- a/recipes/d3rlpy/meta.yaml +++ /dev/null @@ -1,55 +0,0 @@ -{% set name = "d3rlpy" %} -{% set version = "0.32" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz - sha256: 808ff3094b0e59ff373213a02034158f798d1a5c378ab5de222629148267676b - -build: - number: 0 - script: "{{ PYTHON }} -m pip install . -vv" - -requirements: - build: - - {{ compiler('cxx') }} - host: - - python - - pip - - numpy - - Cython - run: - - python - - {{ pin_compatible('numpy') }} - - pytorch - - scikit-learn - - tensorboardx - - tqdm - - gputil - - h5py - - gym - - kornia - -test: - imports: - - d3rlpy - -about: - home: https://github.com/takuseno/d3rlpy - license: MIT - license_family: MIT - license_file: LICENSE - summary: 'A data-driven deep reinforcement learning library as an out-of-the-box tool' - - description: | - d3rlpy is a Python library providing the state-of-the-art data-driven deep - reinforcement learning algorithms through scikit-learn style API. - doc_url: https://d3rlpy.readthedocs.io - dev_url: https://github.com/takuseno/d3rlpy - -extra: - recipe-maintainers: - - takuseno