openai/openai-python

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fc1d9dbc7b2bff9873354897dc5a4e779fe4c3b3

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