-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/resample: new package, add 1.10.1
Signed-off-by: Alexander Puck Neuwirth <alexander@neuwirth-informatik.de>
- Loading branch information
Showing
3 changed files
with
40 additions
and
0 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 @@ | ||
DIST resample-1.10.1.tar.gz 631943 BLAKE2B e76817a4cfc6b1a04a7a601ba8e2c23d5ef38dac815ec244b0ff7af1a470c5a3dc2fbdd51af142443350369fcfb15a492fcfb84f32888097075a15e4d9408c31 SHA512 4e9ce268c375960f75e5e43bd22e304ef33f7ffe7e9ad894bd4f71bace81f1cb81d11e0486a4e09af72fae3106a3a5155be315b6d69a9d28499d39dfe451f053 |
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,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>sci@gentoo.org</email> | ||
<name>Gentoo Science Project</name> | ||
</maintainer> | ||
<maintainer type="person"> | ||
<email>alexander@neuwirth-informatik.de</email> | ||
<name>Alexander Puck Neuwirth</name> | ||
</maintainer> | ||
<longdescription lang="en"> | ||
Resampling-based inference in Python based on data resampling and permutation. | ||
</longdescription> | ||
<upstream> | ||
<remote-id type="pypi">resample</remote-id> | ||
<remote-id type="github">scikit-hep/resample</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
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,20 @@ | ||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{11..13} ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Randomization-based inference in Python" | ||
HOMEPAGE="https://github.com/scikit-hep/resample" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND=" | ||
>=dev-python/numpy-1.21[${PYTHON_USEDEP}] | ||
>=dev-python/scipy-1.10[${PYTHON_USEDEP}] | ||
" | ||
BDEPEND="${RDEPEND}" | ||
|
||
distutils_enable_tests pytest |