Skip to content

Commit ff0dbd5

Browse files
committed
Added pyproject.toml
This will be necessary for the migrations to uv and ruff.
1 parent 42094d7 commit ff0dbd5

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
{name = "Caleb Evans", email = "caleb@calebevans.me"}
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

Comments
 (0)