-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.1 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
65
66
[build-system]
requires = [
'hatchling',
'hatch-regex-commit',
]
build-backend = 'hatchling.build'
[project]
name = 'sysdi'
authors = [
{name = 'Randy Syring', email = 'randy.syring@level12.io'},
]
requires-python = '~=3.12.0'
dynamic = ['version']
readme = 'readme.md'
dependencies = [
"blazeutils>=0.7.0",
"furl>=2.1.4",
]
[project.scripts]
'sysdi' = 'sysdi.cli:main'
[dependency-groups]
# Note: keeping Coppy deps grouped separate from app deps should help avoid unnecessary
# conflicts when upgrading to the latest Coppy template.
dev = [
# From Coppy:
{include-group = "tests"},
{include-group = "pre-commit"},
{include-group = "audit"},
{include-group = "nox"},
'click',
'hatch',
'ruff',
# App specific:
# TODO: fill in app deps here
]
# Used by nox
tests = [
# From Coppy:
'pytest',
'pytest-cov',
# App specific:
# TODO: fill in app deps here
]
# Used by nox
pre-commit = [
# From Coppy:
'pre-commit',
'pre-commit-uv',
]
# Used by nox
audit = [
# From Coppy:
'pip-audit',
]
# Used by CI
nox = [
'nox',
]