-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.44 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "peyeon"
description = "EyeON update tracking utility"
requires-python = ">=3.9"
authors = [
{name = "Seth Lyles", email = "lyles6@llnl.gov"},
{name = "Wangmo Tenzing", email = "tenzing1@llnl.gov"},
{name = "Jack Mooney", email = "mooney7@llnl.gov"},
{name = "Grant Johnson", email = "johnson30@llnl.gov"},
{name = "Isabel Gardner", email = "gardner59@llnl.gov"},
{name = "Grant Espe", email = "espe1@llnl.gov"}
]
maintainers = [
{name = "Seth Lyles", email = "lyles6@llnl.gov"},
]
dependencies=[
"jsonschema >= 4.17",
"lief >= 0.13.2",
"python-magic == 0.4.27",
"pefile >= 2024.8.26",
# "unblob == 23.8.11",
"telfhash >= 0.9.8",
"surfactant[java,macho] == 0.0.0rc16",
"coverage >= 7.5.3",
"alive_progress >= 3.1.5",
"dynaconf>=3.2.6",
"jupyter>=1.1.1",
# "oidc-client>=0.2.6",
"requests>=2.32.4",
"toml>=0.10.2",
"boxsdk==3.14.0",
"pydantic_settings>=2.10.1",
]
readme = "README.md"
license = {text = "MIT License"}
dynamic = ["version"]
[project.optional-dependencies]
dev = ["build", "pre-commit", "black", ]
docs = ["sphinx"]
[project.scripts]
eyeon="eyeon.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_file = "src/eyeon/_version.py"
[tool.coverage.run]
omit =["/usr/*"] # omit code coverage scans for /usr/*