-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3530a90
commit 4f9a60e
Showing
4 changed files
with
70 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[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.dev", | ||
"dynesty==2.0.3", | ||
"jsonschema", | ||
"pyhf", | ||
"requests", | ||
"seaborn", | ||
"numexpr", | ||
"iminuit", | ||
"pytest", | ||
"jinja2", | ||
"ipykernel", | ||
"corner" | ||
] | ||
|
||
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.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"] |
This file was deleted.
Oops, something went wrong.