Skip to content

Commit

Permalink
add packing files
Browse files Browse the repository at this point in the history
  • Loading branch information
masonproffitt committed Nov 23, 2021
1 parent d4480b0 commit 09c7e5e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
27 changes: 27 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[metadata]
name = abcd-pyhf
version = 0.0.0
author = Mason Proffitt
author_email = [email protected]
description = pyhf implementation of the ABCD method for background estimation
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/masonproffitt/abcd-pyhf
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
numpy
matplotlib
pyhf
iminuit

[options.packages.find]
where = src
1 change: 1 addition & 0 deletions src/abcd_pyhf/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .abcd import ABCD

0 comments on commit 09c7e5e

Please sign in to comment.