-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.71 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
[build-system]
requires = [
"hatchling>=1.13.0",
"hatch-vcs>=0.3.0",
]
build-backend = "hatchling.build"
[project]
name = "redist"
dynamic = ["version"]
description = "Package for reinterpretation of particle physics results"
readme = "README.md"
license = { text = "MIT" } # SPDX short identifier
authors = [
{ name = "Lorenz Gaertner", email = "[email protected]" },
]
maintainers = [
{ name = "Lorenz Gaertner", email = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = [
"pip>=23.0",
"eoshep>=1.0.11",
"dynesty==2.0.3",
"jsonschema",
"pyhf",
"bayesian_pyhf @ git+https://github.com/malin-horstmann/bayesian_pyhf.git",
"requests",
"numexpr",
"iminuit",
"pytest",
"jinja2",
"ipykernel",
"corner",
"pre-commit",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/lorenzennio/redist"
Documentation = "https://github.com/lorenzennio/redist"
"Issue Tracker" = "https://github.com/lorenzennio/redist/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.targets.sdist]
# hatchling always includes:
# pyproject.toml, .gitignore, any README, any LICENSE, AUTHORS
only-include = [
"/redist",
]
[tool.hatch.build.targets.wheel]
packages = ["redist"]