-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (38 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
47 lines (38 loc) · 998 Bytes
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
[tool.poetry]
name = "sdcopy"
version = "0.2.0"
description = "Tool for saving files off SD cards"
authors = ["Dmitry Gerasimenko <kiddima@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/kidig/sdcopy"
packages = [
{ include = "sdcopy" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Video",
]
[tool.poetry.scripts]
sdcopy = "sdcopy.__main__:main"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
pytest = "^8.3.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py311"
fix = true
[tool.ruff.lint]
extend-select = ["I", "T20", "UP"]