-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(demo): changed template so less has to be changed when copying repo
- Loading branch information
1 parent
2104745
commit fad7a3c
Showing
5 changed files
with
43 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*.pyc | ||
.idea | ||
venv* | ||
dist/ | ||
build/ |
Empty file.
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 |
---|---|---|
|
@@ -7,25 +7,31 @@ name = "edwh-demo-tasks-plugin" | |
dynamic = ["version"] | ||
description = 'Demo project with a plugin to be discovered from the edwh package' | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.10" | ||
license = "MIT" | ||
keywords = [] | ||
authors = [ | ||
{ name = "Remco Boerma", email = "[email protected]" }, | ||
{ name = "Robin van der Noord", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
] | ||
dependencies = ['invoke'] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"hatch", | ||
# "python-semantic-release", | ||
"black", | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://github.com/remcoboerma/edwh-demo-tasks-plugin#readme" | ||
Issues = "https://github.com/remcoboerma/edwh-demo-tasks-plugin/issues" | ||
|
@@ -38,6 +44,18 @@ demo = "edwh_demo_plugin.demo_plugin" | |
[tool.hatch.version] | ||
path = "src/edwh_demo_plugin/__about__.py" | ||
|
||
[tool.semantic_release] | ||
branch = "master" | ||
version_variable = "src/edwh_demo_plugin/__about__.py:__version__" | ||
change_log = "CHANGELOG.md" | ||
upload_to_repository = false | ||
upload_to_release = false | ||
build_command = "hatch build" | ||
|
||
parser_angular_minor_types = "feat,minor" | ||
parser_angular_patch_types = "fix,perf,refactor,build,chore,patch" | ||
|
||
|
||
[tool.hatch.envs.default] | ||
dependencies = [ | ||
"coverage[toml]>=6.5", | ||
|
@@ -56,7 +74,7 @@ cov = [ | |
] | ||
|
||
[[tool.hatch.envs.all.matrix]] | ||
python = ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
python = ["3.10", "3.11", "3.12"] | ||
|
||
[tool.hatch.envs.lint] | ||
detached = true | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# SPDX-FileCopyrightText: 2023-present Remco Boerma <[email protected]> | ||
# | ||
# SPDX-License-Identifier: MIT | ||
__version__ = "0.0.3" | ||
__version__ = "0.0.0" |