-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeta.yaml
43 lines (36 loc) · 1013 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
{% set name = "django-rdkit" %}
{% set version = "0.4.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/rdkit/django-rdkit/archive/v{{ version }}.tar.gz
sha256: f3fd9e607ea70af8fdd1fbd0a65cb171d80909e680012a9f69f21e652bf35e7c
build:
noarch: python
number: 1
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- python {{ python_min }}
- pip
run:
- python >={{ python_min }}
test:
requires:
- python {{ python_min }}
imports:
- django_rdkit
about:
home: https://github.com/rdkit/django-rdkit
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: A Django extension to easily use RDKit functionalities
description: |
django-rdkit offers models for molecules that makes it very easy to create chemically-aware django applications
doc_url: https://django-rdkit.readthedocs.io
dev_url: https://github.com/rdkit/django-rdkit
extra:
recipe-maintainers:
- roukydesbois