forked from verificarlo/verificarlo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (56 loc) · 1.8 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling", "pathspec"]
build-backend = "hatchling.build"
[project]
name = "verificarlo"
dynamic = ["version"]
description = "A tool for debugging and assessing floating point precision and reproducibility."
authors = [
{ name = "Verificarlo contributors", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
license = { file = "COPYING" }
dependencies = [
"numpy>=1.19",
"pandas",
"tables",
"scipy",
"GitPython",
"jinja2",
"bokeh",
"significantdigits>=0.2.0",
]
[tool.hatch.version]
path = "VERSION"
[tool.hatch.build]
include = [
"src/tools/ddebug/*.py",
"src/tools/ci/*.py",
"src/tools/ci/vfc_ci_report/*.py",
"src/tools/ci/vfc_ci_report/templates/index.html",
"src/tools/ci/vfc_ci_report/static/index.js",
"src/tools/ci/vfc_ci_report/workflow_templates/*.md",
"src/tools/ci/vfc_ci_report/workflow_templates/*.yml",
]
[tool.hatch.build.sources]
"src/tools" = "verificarlo"
"src/tools/ddebug" = "verificarlo/"
"src/tools/ci" = "verificarlo/ci"
"src/tools/ci/vfc_ci_report" = "verificarlo/ci/vfc_ci_report"
"src/tools/ci/vfc_ci_report/workflow_templates" = "verificarlo/ci/vfc_ci_report/workflow_templates"
"src/tools/ci/vfc_ci_report/static" = "verificarlo/ci/vfc_ci_report/static"
[tool.hatch.build.targets.verificarlo]
packages = ["src/tools/ddebug", "src/tools/ci"]
[project.scripts]
vfc_ddebug = "verificarlo.ddebug.main:main"
vfc_ci = "verificarlo.ci.__main__:main"
vfc_precexp = "verificarlo.optimize.precexp:main"
vfc_report = "verificarlo.optimize.report:main"
vfc_vtk = "verificarlo.vtk.__main__:main"
[project.urls]
"Bug Tracker" = "https://github.com/verificarlo/verificarlo/issues"