-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.05 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
59
60
61
62
63
64
[build-system]
requires = [
'hatchling',
'hatch-regex-commit',
]
build-backend = 'hatchling.build'
[project]
name = 'worek'
description = 'Database Backup Command Line Utility'
authors = [
{name = 'Level 12', email = 'devteam@level12.io'},
]
license = {text = 'BSD'}
requires-python = '~=3.13.0'
dynamic = ['version']
readme = 'readme.md'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
]
dependencies = [
'sqlalchemy',
'click',
'psycopg2-binary',
]
[project.urls]
Homepage = 'https://github.com/level12/worek'
[project.scripts]
'worek' = 'worek.cli:cli'
[dependency-groups]
dev = [
{include-group = "pytest"},
{include-group = "pre-commit"},
{include-group = "audit"},
{include-group = "nox"},
'click',
'hatch',
'ruff',
]
# Used by nox
pytest = [
'pytest',
'pytest-cov',
]
# Used by nox
pre-commit = [
'pre-commit',
'pre-commit-uv',
]
# Used by nox
audit = [
'pip-audit',
]
# Used by CI
nox = [
'nox',
]