-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #498 from Sinclert/setup-migration
Package setup spec migration
- Loading branch information
Showing
7 changed files
with
67 additions
and
121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
### NOTE: | ||
### | ||
### This file is required when creating a "source distribution": | ||
### | ||
### Reference: https://packaging.python.org/guides/using-manifest-in/ | ||
### Command: $ python -m build --sdist ... | ||
|
||
include README.md | ||
include VERSION |
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 @@ | ||
0.9.1 |
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 was deleted.
Oops, something went wrong.
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,54 @@ | ||
[metadata] | ||
name = madminer | ||
version = file: VERSION | ||
url = https://github.com/madminer-tool/madminer | ||
description = Mining gold from MadGraph to improve limit setting in particle physics. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
author = Johann Brehmer, Felix Kling, Irina Espejo, Sinclert Perez, Kyle Cranmer | ||
author_email = [email protected] | ||
license = MIT | ||
project_urls = | ||
Documentation = https://madminer.readthedocs.io/en/latest/ | ||
Source Code = https://github.com/madminer-tool/madminer | ||
Issue Tracker = https://github.com/madminer-tool/madminer/issues | ||
classifiers = | ||
License :: OSI Approved :: MIT License | ||
Topic :: Scientific/Engineering | ||
Topic :: Scientific/Engineering :: Physics | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.7, <4.0 | ||
install_requires = | ||
h5py | ||
matplotlib>=2.0.0 | ||
numpy>=1.20.0 | ||
particle>=0.16.0 | ||
scipy>=1.0.0 | ||
torch>=1.0.0 | ||
uproot3>=3.14.1 | ||
vector>=0.8.4 | ||
|
||
[options.packages.find] | ||
exclude = | ||
tests | ||
|
||
[options.extras_require] | ||
docs = | ||
myst-parser | ||
numpydoc | ||
sphinx>=1.4 | ||
sphinx_rtd_theme | ||
lint = | ||
black[jupyter]>=21.8b0 | ||
test = | ||
pytest | ||
examples = | ||
bqplot | ||
pandas |