openai/openai-python

Public

mirrored fromhttps://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.18.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

public/setup.py

10lines · modecode

1import os
2
3from setuptools import setup
4
5if os.getenv("OPENAI_UPLOAD") != "y":
6 raise RuntimeError(
7 "This package is a placeholder package on the public PyPI instance, and is not the correct version to install. If you are having trouble figuring out the correct package to install, please contact us."
8 )
9
10setup(name="openai", description="Placeholder package", version="0.0.1")
11