Skip to content

Add kantoku for BentoML Feedstock #28715

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jan 8, 2025
4 changes: 4 additions & 0 deletions recipes/kantoku/conda-forge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
noarch_platforms:
- win_64
- linux_64
- osx_64
60 changes: 60 additions & 0 deletions recipes/kantoku/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{% set name = "kantoku" %}
{% set version = "0.18.1" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/kantoku-{{ version }}.tar.gz
sha256: 6d25065f9da68949aa8181c59151a4670230720ac2b054059fcf6daf1f618740

build:
entry_points:
- circusd = circus.circusd:main
- circusd-stats = circus.stats:main
- circusctl = circus.circusctl:main
- circus-top = circus.stats.client:main
- circus-plugin = circus.plugins:main
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- flit-core >=3.4,<4
- pip
run:
- python >={{ python_min }}
- psutil
- pyzmq >=17.0
- tornado >=5.0.2
- __unix # [unix]
- __win # [win]
- ncurses # [unix]

test:
imports:
- circus
commands:
- pip check
- circusd --help # [unix]
- circusd-stats --help # [unix]
- circusctl --help # [unix]
- circus-top --help # [unix]
- circus-plugin --help # [unix]
requires:
- pip
- python {{ python_min }}

about:
summary: Circus is a program that will let you run and watch multiple processes and sockets.
dev_url: https://github.com/bentoml/kantoku
home: https://circus.readthedocs.io/en/latest/
license: Apache-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- rxm7706
Loading