-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeta.yaml
48 lines (41 loc) · 835 Bytes
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{% set name = "domain2idna" %}
{% set version = "%%version%%" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
path: ./
build:
number: 0
entry_points:
- domain2idna=domain2idna.cli:tool
noarch: python
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- colorama
- pip
- python
- setuptools
run:
- colorama
- python
- setuptools
test:
imports:
- domain2idna
commands:
- domain2idna --version
- domain2idna --help
- domain2idna -s bittréẋ.com
about:
home: "https://github.com/PyFunceble/domain2idna"
license: MIT
license_family: MIT
license_file:
summary: "The tool to convert a domain or a file with a list of domain to the famous IDNA format."
doc_url:
dev_url:
extra:
recipe-maintainers:
- funilrys