forked from crim-ca/dlm-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from crim-ca/fix-readme-links
- Loading branch information
Showing
4 changed files
with
105 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Safety Security and License Configuration file | ||
# https://docs.safetycli.com/safety-docs/administration/safety-policy-files | ||
|
||
security: # configuration for the `safety check` command | ||
ignore-cvss-severity-below: 0 | ||
ignore-cvss-unknown-severity: False | ||
ignore-vulnerabilities: | ||
67599: | ||
reason: disputed pip feature not used by this project | ||
continue-on-vulnerability-error: False | ||
alert: # configuration for the `safety alert` command | ||
security: | ||
# Configuration specific to Safety's GitHub Issue alerting | ||
github-issue: | ||
# Same as for security - these allow controlling if this alert will fire based | ||
# on severity information. | ||
# default: not set | ||
# ignore-cvss-severity-below: 6 | ||
# ignore-cvss-unknown-severity: False | ||
|
||
# Add a label to pull requests with the cvss severity, if available | ||
# label-severity: true | ||
|
||
# Add a label to pull requests, default is 'security' | ||
# requires private repo permissions, even on public repos | ||
# default: security | ||
labels: | ||
- security | ||
|
||
# Assign users to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
# assignees: | ||
# - example-user | ||
|
||
# Prefix to give issues when creating them. Note that changing | ||
# this might cause duplicate issues to be created. | ||
# default: "[PyUp] " | ||
# issue-prefix: "[PyUp] " | ||
|
||
# Configuration specific to Safety's GitHub PR alerting | ||
github-pr: | ||
# Same as for security - these allow controlling if this alert will fire based | ||
# on severity information. | ||
# default: not set | ||
# ignore-cvss-severity-below: 6 | ||
# ignore-cvss-unknown-severity: False | ||
|
||
# Set the default branch (ie, main, master) | ||
# default: empty, the default branch on GitHub | ||
branch: '' | ||
|
||
# Add a label to pull requests with the cvss severity, if available | ||
# default: true | ||
# label-severity: True | ||
|
||
# Add a label to pull requests, default is 'security' | ||
# requires private repo permissions, even on public repos | ||
# default: security | ||
labels: | ||
- security | ||
|
||
# Assign users to pull requests, default is not set | ||
# requires private repo permissions, even on public repos | ||
# default: empty | ||
# assignees: | ||
# - example-user | ||
|
||
# Configure the branch prefix for PRs created by this alert. | ||
# NB: Changing this will likely cause duplicate PRs. | ||
# default: pyup/ | ||
branch-prefix: pyup/ | ||
|
||
# Set a global prefix for PRs | ||
# default: "[PyUp] " | ||
pr-prefix: "[PyUp] " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,14 @@ build-backend = "poetry.core.masonry.api" | |
name = "stac-model" | ||
version = "0.1.3" | ||
description = "A PydanticV2 validation and serialization libary for the STAC ML Model Extension" | ||
readme = "README.md" | ||
authors = ["Ryan Avery <[email protected]>"] | ||
readme = "README_STAC_MODEL.md" | ||
authors = [ | ||
"Ryan Avery <[email protected]>", | ||
"Francis Charette-Migneault <[email protected]>" | ||
] | ||
license = "Apache Software License 2.0" | ||
repository = "https://github.com/rbavery/stac-model" | ||
homepage = "https://github.com/rbavery/stac-model" | ||
repository = "https://github.com/crim-ca/mlm-extension" | ||
homepage = "https://github.com/crim-ca/mlm-extension/blob/main/README_STAC_MODEL.md" | ||
packages = [ | ||
{include = "stac_model"} | ||
] | ||
|
@@ -25,13 +28,15 @@ keywords = [] # UPDATEME with relevant keywords | |
|
||
# Pypi classifiers: https://pypi.org/classifiers/ | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Development Status :: 4 - Beta", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Framework :: Pydantic", | ||
"Framework :: Pydantic :: 2", | ||
"Intended Audience :: Developers", | ||
|
@@ -85,6 +90,11 @@ ruff = "^0.2.2" | |
bump-my-version = "^0.21" | ||
|
||
[tool.bumpversion] | ||
# NOTE: | ||
# Although these definitions are provided in this 'stac-model' project file, | ||
# they are actually intented for versioning the MLM specification itself. | ||
# To version 'stac-model', use the 'poetry version' operations. | ||
# See also https://github.com/crim-ca/mlm-extension/blob/main/CONTRIBUTING.md#building-and-releasing | ||
current_version = "1.1.0" | ||
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" | ||
serialize = ["{major}.{minor}.{patch}"] | ||
|