openai/openai-python
Publicmirrored fromhttps://github.com/openai/openai-pythonAvailable
public/setup.py
10lines · modecode
| 1 | import os |
| 2 | |
| 3 | from setuptools import setup |
| 4 | |
| 5 | if 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 | |
| 10 | setup(name="openai", description="Placeholder package", version="0.0.1") |
| 11 | |