-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.2 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "softwareaccounting"
requires-python = ">=3.6"
readme = "README.md"
dependencies = [
"peewee",
"PyYAML",
"requests",
]
dynamic = ["version"]
[dependency-groups]
development = [
"build",
"pre-commit",
"ruff",
]
[project.urls]
Documentation = "https://hpc2n.github.io/softwareaccounting/"
Source = "https://github.com/hpc2n/softwareaccounting"
Tracker = "https://github.com/hpc2n/softwareaccounting/issues"
[project.optional-dependencies]
post-receiver = ["Flask"]
[tool.setuptools]
packages = [
"sams",
"sams.aggregator",
"sams.loader",
"sams.output",
"sams.pidfinder",
"sams.sampler",
"sams.backend",
"sams.software",
"sams.xmlwriter",
"sams.listener",
]
script-files = [
"scripts/sams-aggregator.py",
"scripts/sams-collector.py",
"scripts/sams-post-receiver.py",
"scripts/sams-software-extractor.py",
"scripts/sams-software-updater.py",
"extras/sgas-sa-registrant/bin/sgas-sa-registrant",
]
[tool.setuptools.dynamic]
version = {attr = "sams.__version__"}
[tool.ruff]
line-length = 140
[tool.ruff.lint]
extend-select = ["E", "I"]