-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.21 KB
/
pyproject.toml
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
[project]
name = "asciinema-automation"
version = "0.2.2"
authors = [{ name = "Pierre Marchand", email = "[email protected]" }]
description = "CLI utility to automate asciinema"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.7"
license = { text = "MIT License" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Unix",
]
keywords = ["asciinema"]
dependencies = ["pexpect>=4.8.0", "asciinema>=2.2.0"]
[project.optional-dependencies]
dev = ["ruff", "pytest", "mypy", "types-pexpect"]
[project.urls]
"Homepage" = "https://github.com/PierreMarchand20/asciinema_automation"
"Bug Tracker" = "https://github.com/PierreMarchand20/asciinema_automation/issues"
[project.scripts]
asciinema-automation = "asciinema_automation.cli:cli"
[tool.ruff]
line-length = 88
indent-width = 4
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
ignore = []
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
[tool.mypy]
python_version = "3.12"
strict = true