Skip to content

Commit

Permalink
commit codes to github
Browse files Browse the repository at this point in the history
  • Loading branch information
soutobias committed Jan 29, 2024
0 parents commit 3fabc5d
Show file tree
Hide file tree
Showing 240 changed files with 28,036 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .binder/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Requirements to run notebooks in BinderHub

folium
httpx

rasterio
boto3
tqdm


geojson_pydantic
cogeo-mosaic

ipyleaflet

matplotlib
75 changes: 75 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
[bumpversion]
current_version = 0.11.7
commit = True
tag = True
tag_name = {new_version}
parse =
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<pre>a|b|rc)(?P<prenum>\d+))?
serialize =
{major}.{minor}.{patch}{pre}{prenum}
{major}.{minor}.{patch}

[bumpversion:file (global):pyproject.toml]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file (core):pyproject.toml]
search = titiler.core=={current_version}
replace = titiler.core=={new_version}

[bumpversion:file (extensions):pyproject.toml]
search = titiler.extensions=={current_version}
replace = titiler.extensions=={new_version}

[bumpversion:file (mosaic):pyproject.toml]
search = titiler.mosaic=={current_version}
replace = titiler.mosaic=={new_version}

[bumpversion:file (application):pyproject.toml]
search = titiler.application=={current_version}
replace = titiler.application=={new_version}

[bumpversion:file:src/titiler/core/titiler/core/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:src/titiler/extensions/titiler/extensions/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:src/titiler/mosaic/titiler/mosaic/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:src/titiler/application/titiler/application/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:src/titiler/mosaic/pyproject.toml]
search = titiler.core=={current_version}
replace = titiler.core=={new_version}

[bumpversion:file:src/titiler/extensions/pyproject.toml]
search = titiler.core=={current_version}
replace = titiler.core=={new_version}

[bumpversion:file (core):src/titiler/application/pyproject.toml]
search = titiler.core=={current_version}
replace = titiler.core=={new_version}

[bumpversion:file (extensions):src/titiler/application/pyproject.toml]
search = titiler.extensions[cogeo,stac]=={current_version}
replace = titiler.extensions[cogeo,stac]=={new_version}

[bumpversion:file (mosaic):src/titiler/application/pyproject.toml]
search = titiler.mosaic=={current_version}
replace = titiler.mosaic=={new_version}

[bumpversion:file:deployment/aws/lambda/Dockerfile]
search = titiler.application=={current_version}
replace = titiler.application=={new_version}

[bumpversion:file:deployment/k8s/charts/Chart.yaml]
search = appVersion: {current_version}
replace = appVersion: {new_version}
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.history
.tox
.git
.github
.vscode

deployment/*
docs/*

deployment/aws/**
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Bug report
about: Create a report to help us improve
labels: bug
---

<!-- Please search existing issues to avoid creating duplicates. -->


#### Problem description

[this should explain **why** the current behavior is a problem and why the expected output is a better solution.]

#### Expected Output


#### Environment Information

Os, Python version, ...
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
contact_links:
- name: Ask questions
url: https://github.com/developmentseed/titiler/discussions/categories/q-a
about: Please ask and answer questions here.
- name: Feature Request / Ideas
url: https://github.com/developmentseed/titiler/discussions/categories/general
about: Please share your ideas or feature requests here.
8 changes: 8 additions & 0 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
comment: off

coverage:
status:
project:
default:
target: auto
threshold: 5
Loading

0 comments on commit 3fabc5d

Please sign in to comment.