Skip to content
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

Added vsketch as a package #29352

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions recipes/vsketch/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{% set name = "vsketch" %}
{% set version = "1.1.0" %}
{% set python_min = "3.10" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/vsketch-{{ version }}.tar.gz
sha256: 9862b567134bfcc5bc2905e2f9a6b6ca4b58cef794ae105c619284de8ee4efb9

build:
entry_points:
- vsk = vsketch_cli.cli:cli
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- poetry-core
- pip
run:
- python >={{ python_min }}
- cookiecutter >=2.1
- matplotlib-base >=3.3.3
- multiprocess >=0.70
- numpy >=1.20.1
- pnoise >=0.2.0
- pyside6 >=6.3.2
- shapely >=1.8.2
- vpype 1.14
- watchfiles >=0.12

test:
imports:
- vsketch
commands:
- pip check
- vsk --help
requires:
- pip
- python {{ python_min }}

about:
home: https://github.com/abey79/vsketch
summary: Plotter generative art environment
license: EPL-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- thewchan
Loading