Skip to content

Commit 47bb69b

Browse files
authored
Initial commit
0 parents  commit 47bb69b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+5235
-0
lines changed

.codespellignore

Whitespace-only changes.

.dockerignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.git/
2+
.github/
3+
.gitignore
4+
5+
build/
6+
.mypy_cache/
7+
.pytest_cache/
8+
__pycache__/
9+
*.pyc
10+
*.egg-info/
11+
12+
CHANGELOG.md
13+
CODE_OF_CONDUCT.md
14+
CONTRIBUTING.md
15+
README.md
16+
README-template.md
17+
18+
docker_env
19+
20+
.coverage
21+
coverage.xml

.github/.markdownlint-cli2.jsonc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"config": {
3+
"MD041": false
4+
}
5+
}

.github/ISSUE_TEMPLATE/bug_report.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To reproduce**
14+
Steps to reproduce the behavior:
15+
16+
> Ex.
17+
>
18+
> 1. Install stactools-ephemeral
19+
> 2. Run `scripts/test`
20+
> 3. See error
21+
22+
**Expected behavior**
23+
A clear and concise description of what you expected to happen.
24+
25+
**Screenshots and shell session dumps**
26+
If applicable, add session dumps and/or screenshots to help explain your problem.
27+
28+
> ex. `scripts/lint >> lint_errors.txt`
29+
30+
**Additional context**
31+
Add any other context about the problem here.
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always
12+
frustrated when [...]
13+
14+
**Describe the solution you'd like**
15+
A clear and concise description of what you want to happen. Ex. I would like to
16+
use stac \<package\> to do [...]
17+
18+
**Describe alternatives you've considered**
19+
A clear and concise description of any alternative solutions or features you've considered.
20+
21+
**Additional context**
22+
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "pip"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
versioning-strategy: increase-if-necessary
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
codecov:
11+
name: codecov
12+
runs-on: ubuntu-latest
13+
env:
14+
DOCKER_BUILDKIT: true
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Execute linters and test suites
18+
run: ./docker/cibuild
19+
- name: Upload All coverage to Codecov
20+
uses: codecov/codecov-action@v5
21+
with:
22+
token: ${{ secrets.CODECOV_TOKEN }}
23+
file: ./coverage.xml
24+
fail_ci_if_error: false
25+
python-matrix:
26+
name: python-matrix
27+
runs-on: ubuntu-latest
28+
strategy:
29+
matrix:
30+
python-version: ["3.9", "3.10", "3.11", "3.12"]
31+
defaults:
32+
run:
33+
shell: bash -l {0}
34+
steps:
35+
- uses: actions/checkout@v4
36+
- name: Set up conda cache
37+
uses: actions/cache@v4
38+
with:
39+
path: ~/conda_pkgs_dir
40+
key: ${{ runner.os }}-conda-${{ hashFiles('**/environment.yml') }}
41+
restore-keys: ${{ runner.os }}-conda-
42+
- name: Set up uv
43+
uses: astral-sh/setup-uv@v5
44+
with:
45+
version: "0.5.*"
46+
- name: Set up Conda with Python ${{ matrix.python-version }}
47+
uses: conda-incubator/setup-miniconda@v3
48+
with:
49+
auto-update-conda: true
50+
python-version: ${{ matrix.python-version }}
51+
- name: Update Conda's environemnt
52+
run: conda env update -f environment.yml -n test
53+
- name: Install package
54+
run: uv sync
55+
- name: Execute linters and test suites
56+
run: uv run ./scripts/test

.github/workflows/release.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
workflow_dispatch:
8+
9+
jobs:
10+
release:
11+
name: release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Set up Python 3.x
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.x"
20+
21+
- name: Install release dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install setuptools wheel twine
25+
26+
- name: Build and publish package
27+
env:
28+
TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}
29+
TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}
30+
run: |
31+
scripts/publish

.gitignore

+140
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
tests/data-files/external
2+
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
share/python-wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
MANIFEST
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.nox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*.cover
51+
*.py,cover
52+
.hypothesis/
53+
.pytest_cache/
54+
cover/
55+
56+
# Translations
57+
*.mo
58+
*.pot
59+
60+
# Django stuff:
61+
*.log
62+
local_settings.py
63+
db.sqlite3
64+
db.sqlite3-journal
65+
66+
# Flask stuff:
67+
instance/
68+
.webassets-cache
69+
70+
# Scrapy stuff:
71+
.scrapy
72+
73+
# Sphinx documentation
74+
docs/_build/
75+
76+
# PyBuilder
77+
.pybuilder/
78+
target/
79+
80+
# Jupyter Notebook
81+
.ipynb_checkpoints
82+
83+
# IPython
84+
profile_default/
85+
ipython_config.py
86+
87+
# pyenv
88+
# For a library or package, you might want to ignore these files since the code is
89+
# intended to run in multiple environments; otherwise, check them in:
90+
# .python-version
91+
92+
# pipenv
93+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
95+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
96+
# install all needed dependencies.
97+
#Pipfile.lock
98+
99+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
100+
__pypackages__/
101+
102+
# Celery stuff
103+
celerybeat-schedule
104+
celerybeat.pid
105+
106+
# SageMath parsed files
107+
*.sage.py
108+
109+
# Environments
110+
.env
111+
.venv
112+
env/
113+
venv/
114+
ENV/
115+
env.bak/
116+
venv.bak/
117+
118+
# Spyder project settings
119+
.spyderproject
120+
.spyproject
121+
122+
# Rope project settings
123+
.ropeproject
124+
125+
# mkdocs documentation
126+
/site
127+
128+
# mypy
129+
.mypy_cache/
130+
.dmypy.json
131+
dmypy.json
132+
133+
# Pyre type checker
134+
.pyre/
135+
136+
# pytype static type analyzer
137+
.pytype/
138+
139+
# Cython debug symbols
140+
cython_debug/

.pre-commit-config.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Configuration file for pre-commit (https://pre-commit.com/).
2+
# Please run `pre-commit run --all-files` when adding or changing entries.
3+
4+
repos:
5+
- repo: https://github.com/codespell-project/codespell
6+
rev: v2.3.0
7+
hooks:
8+
- id: codespell
9+
args: [--ignore-words=.codespellignore]
10+
types_or: [jupyter, markdown, python, shell]
11+
- repo: https://github.com/pre-commit/mirrors-mypy
12+
rev: v1.10.1
13+
hooks:
14+
- id: mypy
15+
additional_dependencies:
16+
- click != 8.1.0
17+
- stactools
18+
- repo: https://github.com/astral-sh/ruff-pre-commit
19+
rev: v0.8.3
20+
hooks:
21+
- id: ruff
22+
args: [ --fix ]
23+
- id: ruff-format

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
This project attempts to match the major and minor versions of
7+
[stactools](https://github.com/stac-utils/stactools) and increments the patch
8+
number as needed.
9+
10+
## [Unreleased]
11+
12+
### Added
13+
14+
- Nothing.
15+
16+
### Deprecated
17+
18+
- Nothing.
19+
20+
### Removed
21+
22+
- Nothing.
23+
24+
### Fixed
25+
26+
- Nothing.
27+
28+
[Unreleased]: <https://github.com/stactools-packages/ephemeral/tree/main/>

0 commit comments

Comments
 (0)