mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
openai-1.6.1.ebuild
This commit is contained in:
parent
f0095732a2
commit
9e0414e869
2 changed files with 40 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST openai-1.3.9.tar.gz 122055 BLAKE2B 1b33a643eb335a8124eb960a4056f3c63193ccc996601e6cfa756cc4aa1722d21c1d352607401c013dba1b6180a079c37d713f94c98ef87c2c497c5f00adbb60 SHA512 9015178e58f2a41491cdefa8cde4d479407239054717faa7f154bb6d189a7705b6c95515d26601d7f82022877af4a9abf6e427db8fa32db3235d87b0af47bf58
|
||||
DIST openai-1.6.1.tar.gz 124807 BLAKE2B 276f515eef72e756aea2728a9640bb3646f061dc31dfd6602b0277bfd5ed1e8dfd81454b0842f8e903fd15c142aa05352f0bca0964564f0cf59c417299c34ad6 SHA512 f2953f67e2c7c8c8af9fd6fdfd95c61c409da777774dc4f44cb8608afc9959e14626813233463e6f76a4847c8ca9a96fd91af466542d356462865447fbd7a1d6
|
||||
|
|
|
|||
39
dev-python/openai/openai-1.6.1.ebuild
Normal file
39
dev-python/openai/openai-1.6.1.ebuild
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python client library for the OpenAI API"
|
||||
HOMEPAGE="https://github.com/openai/openai-python"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE="datalib"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/httpx-0.23.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/typing-extensions-4.7[${PYTHON_USEDEP}]
|
||||
>=dev-python/anyio-3.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/distro-1.7.0[${PYTHON_USEDEP}]
|
||||
dev-python/sniffio[${PYTHON_USEDEP}]
|
||||
>dev-python/tqdm-4[${PYTHON_USEDEP}]
|
||||
|
||||
datalib? (
|
||||
dev-python/numpy[${PYTHON_USEDEP}]
|
||||
>=dev-python/pandas-1.2.3[${PYTHON_USEDEP}]
|
||||
>=dev-python/pandas-stubs-1.1.0.11[${PYTHON_USEDEP}]
|
||||
)"
|
||||
# wandb? ( dev-python/wandb[$PYTHON_USEDEP}] )"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
# wandb? ( datalib )"
|
||||
|
||||
RESTRICT="test"
|
||||
Loading…
Reference in a new issue