Skip to content

Commit 24bcdea

Browse files
authored
Create meta.yaml
1 parent 7cbdbac commit 24bcdea

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

.github/conda/meta.yaml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{% set name = "dl1_data_handler" %}
2+
{% set version = environ.get('GIT_DESCRIBE_TAG', '0.0.0') %}
3+
4+
package:
5+
name: {{ name|lower }}
6+
version: {{ version }}
7+
8+
source:
9+
git_url: https://github.com/cta-observatory/dl1-data-handler.git
10+
git_tag: v{{ version }}
11+
12+
build:
13+
noarch: python
14+
number: 0
15+
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
16+
17+
requirements:
18+
host:
19+
- python >=3.10
20+
- pip
21+
- setuptools >=65
22+
- setuptools_scm >=6.2
23+
run:
24+
- python >=3.10
25+
- ctapipe >=0.22,<0.26
26+
- astropy
27+
- numpy
28+
- pandas
29+
- pyyaml
30+
- scipy
31+
- traitlets
32+
- pydot
33+
- setuptools
34+
35+
test:
36+
imports:
37+
- dl1_data_handler
38+
39+
about:
40+
home: https://github.com/cta-observatory/dl1-data-handler
41+
license: BSD-3-Clause
42+
summary: "Utilities for reading and processing CTA R1/DL0/DL1 data in a standardized format."
43+
description: |
44+
A package of utilities for reading and applying image processing to Cherenkov Telescope Array (CTA)
45+
R1/DL0/DL1 data in a standardized format. Created primarily for testing machine learning image
46+
analysis techniques on IACT data.
47+
dev_url: https://github.com/cta-observatory/dl1-data-handler
48+
49+
extra:
50+
recipe-maintainers:
51+
- Daniel Nieto
52+
- Tjark Miener

0 commit comments

Comments
 (0)