-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "extendedtimestamp"
version = "0.1.1"
description = "An extended time plugin for Flow."
authors = ["mpmansell <mpmansell@example.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mpmansell/Flow.Launcher.Plugin.ExtendedTimestamp"
packages = [
{ include = "plugin" }
]
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.poetry.dependencies]
python = ">=3.10"
flowlauncher = ">=0.2.0"
pyperclip = ">=1.11.0"
python-dotenv = ">=1.2.1"
types-pyperclip = "^1.9.0.20250801"
[tool.poetry.group.dev.dependencies]
babel = ">=2.18.0"
click = ">=8.3.1"
# codecov = ">=2.1.13"
coverage = ">=7.13.3"
web-pdb = "^1.6.3"
pytest = [
{ version = ">=7.0,<9", python = ">=3.8,<3.10" },
{ version = ">=9.0", python = ">=3.10" }
]
pytest-cov = [
{ version = ">=5.0,<7", python = ">=3.8,<3.9" },
{ version = ">=7.0", python = ">=3.9" }
]
pre-commit = [
{ version = ">=3.0,<4", python = ">=3.8,<3.9" },
{ version = ">=4.0", python = ">=3.9" }
]
black = [
{ version = ">=23.0,<24", python = ">=3.8,<3.9" },
{ version = ">=24.0", python = ">=3.9" }
]
mypy = [
{ version = ">=0.9,<1.7", python = ">=3.8,<3.9" },
{ version = ">=1.7", python = ">=3.9" }
]
isort = ">=7.0.0"
[[tool.mypy.overrides]]
module = ["flowlauncher"]
ignore_missing_imports = true
[tool.poetry.scripts]
extendedtimestamp = "commands:cli"
initialise-translations = "scripts.initialise_translations:compile_translations"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"