openai/openai-python

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
946aa8fa4a49f8331a1ad73ce2b063e26b1980d7

Branches

Tags

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

Clone

HTTPS

Download ZIP

Makefile

9lines · modecode

1.PHONY: build upload
2
3build:
4 python setup.py sdist
5
6upload:
7 twine upload dist/openai-*.tar.gz
8 rm dist/openai-*.tar.gz
9
10