feat(packaging): switch to gitea and uv
All checks were successful
CI / ci (pull_request) Successful in 1m37s
All checks were successful
CI / ci (pull_request) Successful in 1m37s
This commit is contained in:
@ -1,26 +1,31 @@
|
||||
[tool.poetry]
|
||||
[project]
|
||||
name = "roboluke-tasks"
|
||||
version = "0.0.0" # Version is tracked by GitHub Releases
|
||||
version = "0.0.0"
|
||||
description = "Add tasks to a Wekan to do list via Webex and n8n."
|
||||
authors = ["Luke Tainton <luke@tainton.uk>"]
|
||||
readme = "README.md"
|
||||
package-mode = false
|
||||
authors = [
|
||||
{name = "Luke Tainton", email = "luke@tainton.uk"},
|
||||
]
|
||||
requires-python = "<4.0,>=3.11"
|
||||
dependencies = [
|
||||
"webex-bot<1.0.0,>=0.5.2",
|
||||
"datetime<6.0,>=5.5",
|
||||
"requests<3.0.0,>=2.32.3",
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.11"
|
||||
webex-bot = "^0.5.2"
|
||||
datetime = "^5.5"
|
||||
requests = "^2.32.3"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
black = "^24.10.0"
|
||||
coverage = "^7.6.10"
|
||||
isort = "^5.13.2"
|
||||
pylint = "^3.3.3"
|
||||
pylint-exit = "^1.2.0"
|
||||
pytest = "^8.3.4"
|
||||
zipp = "^3.21.0"
|
||||
[tool.uv]
|
||||
dev-dependencies = [
|
||||
"black<25.0.0,>=24.10.0",
|
||||
"coverage<8.0.0,>=7.6.10",
|
||||
"isort<6.0.0,>=5.13.2",
|
||||
"pylint<4.0.0,>=3.3.3",
|
||||
"pylint-exit<2.0.0,>=1.2.0",
|
||||
"pytest<9.0.0,>=8.3.4",
|
||||
"zipp<4.0.0,>=3.21.0",
|
||||
]
|
||||
|
||||
[tool.pdm.build]
|
||||
includes = []
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
requires = ["pdm-backend"]
|
||||
build-backend = "pdm.backend"
|
||||
|
Reference in New Issue
Block a user