forked from tomerfiliba/plumbum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
42 lines (34 loc) · 904 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
package:
name: plumbum
version: {{ environ.get('GIT_DESCRIBE_TAG', '').replace('v','') }}
source:
path: ../
requirements:
build:
- python
- setuptools
run:
- python
- paramiko
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
{% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0
{% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %}
test:
# Python imports
imports:
- plumbum
- plumbum.cli
- plumbum.colorlib
- plumbum.commands
- plumbum.fs
- plumbum.machines
- plumbum.path
requires:
# Put any additional test requirements here. For example
- pytest
- paramiko
about:
home: https://plumbum.readthedocs.io
license: MIT License
summary: 'Plumbum: shell combinators library'