Skip to content

Commit 79eee8b

Browse files
committed
feat: bring everything over
1 parent 793224b commit 79eee8b

Some content is hidden

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

71 files changed

+11472
-0
lines changed

.gitignore

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
target/
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+
# poetry
100+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
101+
# This is especially recommended for binary packages to ensure reproducibility, and is more
102+
# commonly ignored for libraries.
103+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
104+
#poetry.lock
105+
106+
# pdm
107+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
108+
#pdm.lock
109+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
110+
# in version control.
111+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
112+
.pdm.toml
113+
.pdm-python
114+
.pdm-build/
115+
116+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
117+
__pypackages__/
118+
119+
# Celery stuff
120+
celerybeat-schedule
121+
celerybeat.pid
122+
123+
# SageMath parsed files
124+
*.sage.py
125+
126+
# Environments
127+
.env
128+
.venv
129+
env/
130+
venv/
131+
ENV/
132+
env.bak/
133+
venv.bak/
134+
135+
# Spyder project settings
136+
.spyderproject
137+
.spyproject
138+
139+
# Rope project settings
140+
.ropeproject
141+
142+
# mkdocs documentation
143+
/site
144+
145+
# mypy
146+
.mypy_cache/
147+
.dmypy.json
148+
dmypy.json
149+
150+
# Pyre type checker
151+
.pyre/
152+
153+
# pytype static type analyzer
154+
.pytype/
155+
156+
# Cython debug symbols
157+
cython_debug/
158+
159+
# PyCharm
160+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
161+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
162+
# and can be added to the global gitignore or merged into this file. For a more nuclear
163+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
164+
#.idea/

CHANGELOG.md

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
### Removed
10+
11+
- Validation, pending <https://github.com/stac-utils/stac-rs/issues/517>
12+
13+
### Changed
14+
15+
- Moved out of the <https://github.com/stac-utils/stac-rs> into <https://github.com/gadomski/stacrs>
16+
17+
## [0.2.2] - 2024-10-22
18+
19+
### Added
20+
21+
- Send user agent when searching ([#487](https://github.com/stac-utils/stac-rs/pull/487))
22+
23+
## [0.2.1] - 2024-10-21
24+
25+
### Added
26+
27+
- More wheels ([#481](https://github.com/stac-utils/stac-rs/pull/481))
28+
29+
## [0.2.0] - 2024-10-19
30+
31+
### Added
32+
33+
- `version` ([#476](https://github.com/stac-utils/stac-rs/pull/476))
34+
35+
### Changed
36+
37+
- Moved docstrings to stub file ([#468](https://github.com/stac-utils/stac-rs/pull/468))
38+
39+
### Removed
40+
41+
- `pystac` ([#468](https://github.com/stac-utils/stac-rs/pull/468))
42+
43+
## [0.1.3] - 2024-10-17
44+
45+
### Added
46+
47+
- Experimental DuckDB 🦆 search on **stac-geoparquet** files ([#458](https://github.com/stac-utils/stac-rs/pull/458))
48+
49+
## [0.1.2] - 2024-09-22
50+
51+
### Changed
52+
53+
- Return the item count from `search_to` ([#426](https://github.com/stac-utils/stac-rs/pull/426))
54+
55+
## [0.1.1] - 2024-09-21
56+
57+
### Added
58+
59+
- Extension module feature
60+
61+
### Changed
62+
63+
- Use Github Pages for docs ([#420](https://github.com/stac-utils/stac-rs/pull/420))
64+
65+
## [0.1.0] - 2024-09-20
66+
67+
### Added
68+
69+
- `migrate_href` ([#334](https://github.com/stac-utils/stac-rs/pull/334))
70+
- `search` and `search_to` ([#387](https://github.com/stac-utils/stac-rs/pull/387))
71+
- `read`, `write`, and `pystac` ([#418](https://github.com/stac-utils/stac-rs/pull/418))
72+
73+
## [0.0.3] - 2024-08-29
74+
75+
### Added
76+
77+
- `migrate` ([#309](https://github.com/stac-utils/stac-rs/pull/309))
78+
- `validate` and docs ([#307](https://github.com/stac-utils/stac-rs/pull/307))
79+
80+
## [0.0.2] - 2024-08-28
81+
82+
Non-functional release to fix releasing from Github actions.
83+
84+
## [0.0.1] - 2024-08-28
85+
86+
Initial release.
87+
88+
[Unreleased]: https://github.com/stac-utils/stac-rs/compare/python-v0.2.2...main
89+
[0.2.2]: https://github.com/stac-utils/stac-rs/compare/python-v0.2.1...python-v0.2.2
90+
[0.2.1]: https://github.com/stac-utils/stac-rs/compare/python-v0.2.0...python-v0.2.1
91+
[0.2.0]: https://github.com/stac-utils/stac-rs/compare/python-v0.1.3...python-v0.2.0
92+
[0.1.3]: https://github.com/stac-utils/stac-rs/compare/python-v0.1.2...python-v0.1.3
93+
[0.1.2]: https://github.com/stac-utils/stac-rs/compare/python-v0.1.1...python-v0.1.2
94+
[0.1.1]: https://github.com/stac-utils/stac-rs/compare/python-v0.1.0...python-v0.1.1
95+
[0.1.0]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.3...python-v0.1.0
96+
[0.0.3]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.2...python-v0.0.3
97+
[0.0.2]: https://github.com/stac-utils/stac-rs/compare/python-v0.0.1...python-v0.0.2
98+
[0.0.1]: https://github.com/stac-utils/stac-rs/releases/tag/python-v0.0.1
99+
100+
<!-- markdownlint-disable-file MD024 -->

CODE_OF_CONDUCT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../CODE_OF_CONDUCT

CONTRIBUTING.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Contributing to **stacrs**
2+
3+
First off, thanks for contributing!
4+
We appreciates you.
5+
6+
## Testing
7+
8+
We aim for comprehensive unit testing of this library.
9+
Please provide tests for any new features, or to demonstrate bugs.
10+
Draft pull requests with a failing test to demonstrate a bug are much appreciated.
11+
12+
## Submitting changes
13+
14+
Please open a [pull request](https://docs.github.com/en/pull-requests) with your changes -- make sure to include unit tests.
15+
Please follow standard git commit formatting (subject line 50 characters max, wrap the body at 72 characters).
16+
17+
We use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).
18+
Your commits do not have to but if you'd like to format them this way, we would be grateful.
19+
20+
If you can, use `git rebase -i` to create a clean, well-formatted history before opening your pull request.
21+
If you need to make changes after opening your pull request (e.g. to fix CI breakages) we will be grateful if you squash those fixes into their relevant commits.
22+
23+
Thanks so much! \
24+
-Pete Gadomski

0 commit comments

Comments
 (0)