Unverified Commit 21a25d6f authored by Akke Viitanen's avatar Akke Viitanen
Browse files

Implements LINCC

parent 8ff1cd42
Loading
Loading
Loading
Loading

.copier-answers.yml

0 → 100644
+26 −0
Original line number Diff line number Diff line
# Changes here will be overwritten by Copier
_commit: v2.0.7
_src_path: gh:lincc-frameworks/python-project-template
author_email: akke.viitanen@iki.fi
author_name: Akke Viitanen
create_example_module: true
custom_install: true
enforce_style:
- ruff_lint
- ruff_format
failure_notification: []
include_benchmarks: true
include_docs: true
include_notebooks: true
mypy_type_checking: basic
package_name: lsst_inaf_agile
project_license: BSD
project_name: lsst_inaf_agile
project_organization: ageliina
python_versions:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
test_lowest_version: direct

.git_archival.txt

0 → 100644
+4 −0
Original line number Diff line number Diff line
node: $Format:%H$
node-date: $Format:%cI$
describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
ref-names: $Format:%D$
 No newline at end of file

.gitattributes

0 → 100644
+24 −0
Original line number Diff line number Diff line
# For explanation of this file and uses see
# https://git-scm.com/docs/gitattributes
# https://developer.lsst.io/git/git-lfs.html#using-git-lfs-enabled-repositories
# https://lincc-ppt.readthedocs.io/en/latest/practices/git-lfs.html
#
# Used by https://github.com/lsst/afwdata.git
# *.boost filter=lfs diff=lfs merge=lfs -text
# *.dat filter=lfs diff=lfs merge=lfs -text
# *.fits filter=lfs diff=lfs merge=lfs -text
# *.gz filter=lfs diff=lfs merge=lfs -text
#
# apache parquet files
# *.parq	filter=lfs diff=lfs merge=lfs -text
#
# sqlite files
# *.sqlite3	filter=lfs diff=lfs merge=lfs -text
#
# gzip files
# *.gz	filter=lfs diff=lfs merge=lfs -text
#
# png image files
# *.png	filter=lfs diff=lfs merge=lfs -text

.git_archival.txt export-subst
 No newline at end of file
+8 −0
Original line number Diff line number Diff line
---
name: General issue
about: Quickly create a general issue
title: ''
labels: ''
assignees: ''

---
 No newline at end of file
+17 −0
Original line number Diff line number Diff line
---
name: Bug report
about: Tell us about a problem to fix
title: 'Short description'
labels: 'bug'
assignees: ''

---
**Bug report**


**Before submitting**
Please check the following:

- [ ] I have described the situation in which the bug arose, including what code was executed, information about my environment, and any applicable data others will need to reproduce the problem.
- [ ] I have included available evidence of the unexpected behavior (including error messages, screenshots, and/or plots) as well as a description of what I expected instead.
- [ ] If I have a solution in mind, I have provided an explanation and/or pseudocode and/or task list.
Loading