openai/openai-python

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.28.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

Makefile

11lines · modecode

1.PHONY: build upload
2
3build:
4 rm -rf dist/ build/
5 python -m pip install build
6 python -m build .
7
8upload:
9 python -m pip install twine
10 python -m twine upload dist/openai-*
11 rm -rf dist
12