{% set version = "0.2.2" %}

package:
  name: kececifractals
  version: {{ version }}

source:
  path: .  # Derlemeyi bu meta.yaml dosyasının bulunduğu dizinden yap
  url: 
  blake2b-256: 

build:
  noarch: python  # Platformdan bağımsız bir paket oluşturur
  script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed"
  number: 0
  entry_points:
    - kececifractals = kececifractals.__main__:main

requirements:
  host:
    - python {{ python }}
    - numpy
    # Other build tools
  run:
    - python >=3.11
    - numpy
    # Other runtime dependencies
  build:
    - python >=3.11
    - pip

test:
  imports:
    - kececifractals

about:
  home: https://github.com/WhiteSymmetry/kececifractals
  license: AGPL3.0-or-later
  summary: 'Keçeci Fractals: Keçeci-style circle fractal.'
  description: |
    Keçeci Fractals: Keçeci-style circle fractal.
  dev_url: https://github.com/WhiteSymmetry/kececifractals
  doc_url: https://github.com/WhiteSymmetry/kececifractals
  doc_source_url: https://github.com/WhiteSymmetry/kececifractals/blob/main/README.md
