-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmeta.yaml
61 lines (53 loc) · 1.82 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
# Before building this recipe, build the conda
# packages for "deadline" and "openjd-adaptor-runtime" dependencies.
# Find these recipes for building the packages at :
# https://github.com/aws-deadline/deadline-cloud-samples/tree/mainline/conda_recipes
{% set name = "cinema4d-openjd" %}
{% set version = "0.7.3" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/d/deadline-cloud-for-cinema-4d/deadline_cloud_for_cinema_4d-{{ version }}.tar.gz
sha256: 0aec84bc57a542393534fb5f76cab5051da49a5827ba97954f76d7b300601163
patches:
- 0001-Remove-version-hook.patch
# Here's an alternative source definition to build a package from a development branch on github. Replace
# the username and git branch as appropriate for your case.
# source:
# git_url: https://github.com/aws-deadline/deadline-cloud-for-cinema-4d.git
# git_rev: {{ version }}
build:
entry_points:
- cinema4d-openjd = deadline.cinema4d_adaptor.Cinema4DAdaptor:main
- Cinema4DAdaptor = deadline.cinema4d_adaptor.Cinema4DAdaptor:main
noarch: python
script: python -m pip install . -vv --no-deps --no-build-isolation
number: 0
requirements:
build:
# For the variant config file in deadline-cloud.yaml to work, python must not specify a version here.
- python
- hatchling
- hatch-vcs
- pip
run:
# For the variant config file in deadline-cloud.yaml to work, python must not specify a version here.
- python
- deadline >=0.49.7,<0.50
- openjd-adaptor-runtime ==0.9.*
test:
imports:
- deadline.cinema4d_adaptor
commands:
- pip check
- cinema4d-openjd --help
requires:
- pip
about:
summary: AWS Deadline Cloud for Cinema 4D
dev_url: https://github.com/aws-deadline/deadline-cloud-for-cinema-4d
license: Apache-2.0
license_file:
- LICENSE
- NOTICE