# recipe-noarch-python.yaml
schema_version: 1

# this sets up "context variables" (in this case name and version) that
# can later be used in Jinja expressions
context:
  version: 0.2.2
  name: kececifractals

# top level package information (name and version)
package:
  name: kececifractals
  version: 0.2.2

# location to get the source from
#`source` are `url`, `sha256`, `md5`, `patches`, `file_name` and `target_directory`
source:
  path: .
  url: 
  sha256: 

# build number (should be incremented if a new build is made, but version is not incrementing)
build:
  number: 1
  script: python -m pip install --no-deps --ignore-installed .
  noarch: python

# the requirements at build and runtime
requirements:
  host:
    - python
    - pip
    - setuptools
    - wheel
  run:
   - python >=3.11  # hypercomplex uyumlu versiyon
   - numpy  # kececifractals numpy kullanıyor
   - pip

# tests to validate that the package works as expected
#tests:
#  requires: []  # veya boş liste
#  - python:
#      imports:
#        - kececifractals

# information about the package
about:
  homepage: https://github.com/WhiteSymmetry/kececifractals/
  license: GPL-3.0-or-later
  summary: 'kececifractals'
  description: |
    kececifractals
  repository: https://github.com/WhiteSymmetry/kececifractals/
  documentation: https://github.com/WhiteSymmetry/kececifractals/

# the below is conda-forge specific!
extra:
  recipe-maintainers:
    - bilgi
