openai/openai-python
Publicmirrored from https://github.com/openai/openai-pythonAvailable
public/setup.py
10lines · modeblame
3c6d4cd6Greg Brockman5 years ago | 1 | import os |
| 2 | | |
| 3 | from setuptools import find_packages, 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") |