blob: 141c1c5a886fc11909e60d73cc436b85973f875b (
plain) (
blame)
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
|
{% set name = "semantic_version" %}
{% set version = "2.6.0" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "2a4328680073e9b243667b201119772aefc5fc63ae32398d6afafff07c4f54c0"
build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
requirements:
host:
- pip
- python
run:
- python
test:
imports:
- semantic_version
about:
home: "https://github.com/rbarrois/python-semanticversion"
license: "BSD"
license_family: "BSD"
license_file: ""
summary: "A library implementing the 'SemVer' scheme."
doc_url: ""
dev_url: ""
extra:
recipe-maintainers:
- your-github-id-here
|