openai/openai-python

Public

mirrored from https://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.22.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

public/setup.py

10lines · modeblame

3c6d4cd6Greg Brockman5 years ago1import os
2
40c32f9fRachel Lim5 years ago3from setuptools import setup
3c6d4cd6Greg Brockman5 years ago4
5if os.getenv("OPENAI_UPLOAD") != "y":
6raise 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")