-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.03 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "artifacts"
version = "20260207"
description = "ForensicArtifacts.com Artifact Repository"
maintainers = [
{ name = "Forensic artifacts", email = "forensicartifacts@googlegroups.com" },
]
license = "Apache-2.0"
license-files = ["ACKNOWLEDGEMENTS", "AUTHORS", "LICENSE"]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
requires-python = ">=3.10"
dependencies = [
"PyYAML >= 3.10",
]
[project.scripts]
stats = "artifacts.scripts.stats:Main"
validator = "artifacts.scripts.validator:Main"
[project.urls]
Documentation = "https://artifacts.readthedocs.io/en/latest"
Homepage = "https://github.com/ForensicArtifacts/artifacts"
Repository = "https://github.com/ForensicArtifacts/artifacts"
[tool.setuptools.package-data]
artifacts = [
"data/*.yaml",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["artifacts"]
exclude = ["docs", "tests", "tests.*", "utils"]