diff --git a/deps/docformatter/meta.yaml b/deps/docformatter/meta.yaml deleted file mode 100644 index 6455771bb3673c7448676d7b45200d86bb2f7ccc..0000000000000000000000000000000000000000 --- a/deps/docformatter/meta.yaml +++ /dev/null @@ -1,45 +0,0 @@ -{% set version = "1.4" %} - -package: - name: docformatter - version: {{ version }} - -source: - git_rev: v{{ version }} - git_url: https://github.com/myint/docformatter - -build: - noarch: python - number: 0 - script: "{{ PYTHON }} -m pip install --no-deps --ignore-installed ." - -requirements: - build: - - python - - pip - - run: - - python - - untokenize - -test: - - source_files: - - test_docformatter.py - - docformatter.py - - requires: - - nose - - commands: - - nosetests -sv test_docformatter.py - -about: - home: https://github.com/myint/docformatter - license: MIT License - license_family: MIT - summary: 'Formats docstrings to follow PEP 257' - -extra: - recipe-maintainers: - - anjos diff --git a/deps/order.txt b/deps/order.txt index 9640df6cbfd7d48f811e48fcb6b5ebe95f840586..be19c34cd7f400385abdb996f3e8be0eaa4a3605 100644 --- a/deps/order.txt +++ b/deps/order.txt @@ -1,4 +1 @@ repodata-patches -python-gitlab -untokenize -docformatter diff --git a/deps/python-gitlab/meta.yaml b/deps/python-gitlab/meta.yaml deleted file mode 100644 index 55d83f1bcbba980f250844a8a9c4c1e1a9e500a3..0000000000000000000000000000000000000000 --- a/deps/python-gitlab/meta.yaml +++ /dev/null @@ -1,48 +0,0 @@ -{% set name = "python-gitlab" %} -{% set version = "2.6.0" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz - sha256: a862c6874524ab585b725a17b2cd2950fc09d6d74205f40a11be2a4e8f2dcaa1 - -build: - number: 0 - script: "{{ PYTHON }} -m pip install --no-deps --ignore-installed ." - entry_points: - - gitlab = gitlab.cli:main - -requirements: - host: - - python - - pip - run: - - python >=3.6.0 - - requests >=2.22.0 - - requests-toolbelt >=0.9.1 - -test: - imports: - - gitlab - commands: - - gitlab -h - -about: - home: https://github.com/python-gitlab/python-gitlab - license: LGPL-3.0 - license_family: LGPL - license_file: COPYING - summary: 'Python wrapper for the GitLab API' - description: | - python-gitlab is a Python package providing access to the GitLab - server API. It supports the v4 API of GitLab, and provides a CLI - tool (gitlab). - doc_url: https://python-gitlab.readthedocs.io/ - dev_url: https://github.com/python-gitlab/python-gitlab - -extra: - recipe-maintainers: - - anjos diff --git a/deps/untokenize/meta.yaml b/deps/untokenize/meta.yaml deleted file mode 100644 index 1ee8ae593b2c73687132bd3e1121eb9ad91721a7..0000000000000000000000000000000000000000 --- a/deps/untokenize/meta.yaml +++ /dev/null @@ -1,44 +0,0 @@ -{% set version = "0.1.1" %} - -package: - name: untokenize - version: {{ version }} - -source: - git_rev: v{{ version }} - git_url: https://github.com/myint/untokenize - -build: - noarch: python - number: 1 - script: "{{ PYTHON }} -m pip install --no-deps --ignore-installed ." - -requirements: - build: - - python - - pip - - run: - - python - -test: - - source_files: - - test_acid.py - - test_untokenize.py - - requires: - - nose - - commands: - - nosetests -sv test_acid.py test_untokenize.py - -about: - home: https://github.com/myint/untokenize - license: MIT License - license_family: MIT - summary: 'Transforms tokens into original source code (while preserving whitespace)' - -extra: - recipe-maintainers: - - anjos