Skip to content

Commit 2f13bb7

Browse files
Rename package from kececicurve to kececisquares
1 parent 3db60a8 commit 2f13bb7

1 file changed

Lines changed: 60 additions & 0 deletions

File tree

recipe.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# recipe.yaml
2+
# recipe-noarch-python.yaml
3+
schema_version: 1
4+
5+
# this sets up "context variables" (in this case name and version) that
6+
# can later be used in Jinja expressions
7+
context:
8+
version: 0.1.7
9+
name: kececisquares
10+
11+
# top level package information (name and version)
12+
package:
13+
name: kececisquares
14+
version: 0.1.7
15+
16+
# location to get the source from
17+
#`source` are `url`, `sha256`, `md5`, `patches`, `file_name` and `target_directory`
18+
source:
19+
url:
20+
sha256:
21+
22+
# build number (should be incremented if a new build is made, but version is not incrementing)
23+
build:
24+
number: 1
25+
script: python -m pip install --no-deps --ignore-installed .
26+
noarch: python
27+
28+
# the requirements at build and runtime
29+
requirements:
30+
host:
31+
- python
32+
- pip
33+
- setuptools
34+
- wheel
35+
run:
36+
- python >=3.11 # hypercomplex uyumlu versiyon
37+
- numpy # kececisquares numpy kullanıyor
38+
- pip
39+
40+
# tests to validate that the package works as expected
41+
#tests:
42+
# requires: [] # veya boş liste
43+
# - python:
44+
# imports:
45+
# - kececisquares
46+
47+
# information about the package
48+
about:
49+
homepage: https://github.com/WhiteSymmetry/kececisquares/
50+
license: GPL-3.0-or-later
51+
summary: 'kececisquares'
52+
description: |
53+
kececisquares
54+
repository: https://github.com/WhiteSymmetry/kececisquares/
55+
documentation: https://github.com/WhiteSymmetry/kececisquares/
56+
57+
# the below is conda-forge specific!
58+
extra:
59+
recipe-maintainers:
60+
- bilgi

0 commit comments

Comments
 (0)