import os
from setuptools import find_packages, setup
version_contents = {}
with open(
os.path.join(os.path.abspath(os.path.dirname(__file__)), "openai/version.py")
) as f:
exec(f.read(), version_contents)
setup(
name="openai",
description="Python client library for the OpenAI API",
version=version_contents["VERSION"],
install_requires=[
'requests >= 2.20; python_version >= "3.0"',
'requests[security] >= 2.20; python_version < "3.0"',
],
extras_require={"dev": ["black==20.8b1", "pytest==6.*"]},
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
scripts=["bin/openai"],
packages=find_packages(exclude=["tests", "tests.*"]),
package_data={"openai": ["data/ca-certificates.crt"]},
author="OpenAI",
author_email="support@openai.com",
url="https://github.com/openai/openai-python",
)openai/openai-python
Publicmirrored fromhttps://github.com/openai/openai-pythonAvailable
setup.py
27lines · modepreview