We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42094d7 commit ff0dbd5Copy full SHA for ff0dbd5
1 file changed
pyproject.toml
@@ -0,0 +1,35 @@
1
+[project]
2
+name = "open-conference-url"
3
+version = "7.2.0"
4
+description = "An Alfred workflow to quickly open conference links from upcoming calendar events."
5
+readme = "README.md"
6
+requires-python = ">=3.9"
7
+authors = [
8
+ {name = "Caleb Evans", email = "caleb@calebevans.me"}
9
+]
10
+maintainers = [
11
12
13
+license = "MIT"
14
+dependencies = []
15
+
16
+[dependency-groups]
17
+dev = []
18
19
+[tool.ruff]
20
+include = ["**/*.py"]
21
22
+[tool.ruff.lint]
23
+select = [
24
+ # pycodestyle
25
+ "E",
26
+ "W",
27
+ # pyflakes
28
+ "F",
29
+ # isort
30
+ "I",
31
+ # perflint
32
+ "PERF",
33
+ # flake8-executable
34
+ "EXE"
35
0 commit comments