Skip to content

Commit df5b7f8

Browse files
authored
Merge pull request #28976 from ianmkenney/stratocaster
Adding stratocaster
2 parents f7788e4 + 5ca3730 commit df5b7f8

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

recipes/stratocaster/meta.yaml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{% set name = "stratocaster" %}
2+
{% set version = "0.1.0" %}
3+
{% set python_min = "3.10" %}
4+
5+
package:
6+
name: {{ name|lower }}
7+
version: {{ version }}
8+
9+
source:
10+
url: https://github.com/OpenFreeEnergy/stratocaster/archive/refs/tags/v{{ version }}.tar.gz
11+
sha256: b1e251878d27c29b7e9786497f403060e70cacc030ee42dac7889ee24c49ccaf
12+
build:
13+
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
14+
number: 0
15+
noarch: python
16+
17+
requirements:
18+
host:
19+
- python {{ python_min }}
20+
- pip
21+
- setuptools
22+
- versioningit
23+
run:
24+
- python >={{ python_min }}
25+
- gufe >=1.2.0
26+
27+
test:
28+
imports:
29+
- stratocaster
30+
requires:
31+
- pytest
32+
- python {{ python_min }}
33+
commands:
34+
- pytest --pyargs stratocaster
35+
36+
about:
37+
home: https://github.com/OpenFreeEnergy/stratocaster
38+
summary: 'Edge computation prioritization strategies for gufe AlchemicalNetworks'
39+
description: |
40+
stratocaster defines and provides a framework for creating a
41+
ranking of Transformations within a gufe AlchemicalNetwork to
42+
optimize execution order.
43+
license: MIT
44+
license_family: MIT
45+
license_file: LICENSE
46+
dev_url: https://github.com/OpenFreeEnergy/stratocaster
47+
48+
extra:
49+
recipe-maintainers:
50+
- ianmkenney
51+
- mikemhenry

0 commit comments

Comments
 (0)