-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
96 lines (81 loc) · 1.99 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools >= 65.0.0",
"wheel",
"versioningit"]
build-backend = "setuptools.build_meta"
[project]
name = "mvesuvio"
dynamic = ["version"]
authors = [
{name = "The Mantid Project", email = "[email protected]"},
{name = "Guilherme Pereira", email = "[email protected]"},
{name = "More Credit", email = "[email protected]"},
]
description = "Analyse Vesuvio instrument data"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
dependencies = [
"matplotlib",
"iminuit",
"h5py",
"jacobi==0.4.2",
"dill",
]
[project.optional-dependencies]
tests_require = [
"coverage",
"mock>=2.0",
"pytest",
]
[project.urls]
"Repository" = "https://github.com/mantidproject/vesuvio"
"Bug Tracker" = "https://github.com/mantidproject/vesuvio/issues"
[project.entry-points]
console_scripts = { mvesuvio = "mvesuvio.main:main" }
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.package-data]
"mvesuvio.config.ip_files" = ["*.par"]
"mvesuvio.config" = ["*.properties"]
[tool.pytest.ini_options]
pythonpath = [
".",
"./src"
]
testpaths = ["tests"]
filterwarnings = ["error"]
[tool.coverage.run]
include = [
"*/src/mvesuvio/*",
"*/tools/calibration_scripts/*"
]
omit = [
"*tests*",
"*unpackaged*",
"*legacy*"
]
[tool.coverage.report]
fail_under = 0
show_missing = true
skip_empty = true
[tool.versioningit]
default-version = "0.0.0"
[tool.versioningit.vcs]
method = "git"
default-tag = "0.0.0"
match = ["v*"]
[tool.versioningit.next-version]
method = "minor"
[tool.versioningit.format]
distance = "{version}.dev{distance}"
dirty = "{version}.dev{distance}"
distance-dirty = "{version}.dev{distance}"
[tool.versioningit.write]
file = "src/mvesuvio/_version.py"