-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.5 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
[project]
name = "sqlite_backup"
version = "0.1.8"
description = "A tool to copy sqlite databases you don't own"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
keywords = ["database", "sqlite"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = ["click>=8.0", "logzero"]
[[project.authors]]
name = "purarue"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.scripts]
sqlite_backup = "sqlite_backup.__main__:main"
[project.urls]
Homepage = "https://github.com/purarue/sqlite_backup"
[project.optional-dependencies]
testing = ["pytest", "mypy", "flake8", "pytest-reraise"]
[tool.mypy]
pretty = true
show_error_context = true
show_error_codes = true
check_untyped_defs = true
namespace_packages = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
[tool.pytest.ini_options]
addopts = "-rap --doctest-modules sqlite_backup ./tests/"
[tool.setuptools.packages.find]
include = ["sqlite_backup"]
exclude = ["tests*"]