Skip to content

Commit 5ae5c47

Browse files
fix: update org info and package name (#4)
1 parent afa815c commit 5ae5c47

File tree

5 files changed

+18
-21
lines changed

5 files changed

+18
-21
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Codex Python API library
22

3-
[![PyPI version](https://img.shields.io/pypi/v/codex.svg)](https://pypi.org/project/codex/)
3+
[![PyPI version](https://img.shields.io/pypi/v/codex-sdk.svg)](https://pypi.org/project/codex-sdk/)
44

55
The Codex Python library provides convenient access to the Codex REST API from any Python 3.8+
66
application. The library includes type definitions for all request params and response fields,
@@ -15,13 +15,10 @@ The REST API documentation can be found on [help.cleanlab.ai](https://help.clean
1515
## Installation
1616

1717
```sh
18-
# install from the production repo
19-
pip install git+ssh://[email protected]/cleanlab/codex-python.git
18+
# install from PyPI
19+
pip install --pre codex-sdk
2020
```
2121

22-
> [!NOTE]
23-
> Once this package is [published to PyPI](https://app.stainlessapi.com/docs/guides/publish), this will become: `pip install --pre codex`
24-
2522
## Usage
2623

2724
The full API of this library can be found in [api.md](api.md).

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ or products provided by Codex please follow the respective company's security re
2020

2121
### Codex Terms and Policies
2222

23-
Please contact support@cleanlab.ai for any questions or concerns regarding security of our services.
23+
Please contact team@cleanlab.ai for any questions or concerns regarding security of our services.
2424

2525
---
2626

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[project]
2-
name = "codex"
2+
name = "codex-sdk"
33
version = "0.0.1-alpha.0"
44
description = "The official Python library for the Codex API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
77
authors = [
8-
{ name = "Cleanlab", email = "support@cleanlab.ai" },
8+
{ name = "Cleanlab", email = "team@cleanlab.ai" },
99
]
1010
dependencies = [
1111
"httpx>=0.23.0, <1",

requirements-dev.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
annotated-types==0.6.0
1313
# via pydantic
1414
anyio==4.4.0
15-
# via codex
15+
# via codex-sdk
1616
# via httpx
1717
argcomplete==3.1.2
1818
# via nox
@@ -25,7 +25,7 @@ dirty-equals==0.6.0
2525
distlib==0.3.7
2626
# via virtualenv
2727
distro==1.8.0
28-
# via codex
28+
# via codex-sdk
2929
exceptiongroup==1.2.2
3030
# via anyio
3131
# via pytest
@@ -36,7 +36,7 @@ h11==0.14.0
3636
httpcore==1.0.2
3737
# via httpx
3838
httpx==0.28.1
39-
# via codex
39+
# via codex-sdk
4040
# via respx
4141
idna==3.4
4242
# via anyio
@@ -63,7 +63,7 @@ platformdirs==3.11.0
6363
pluggy==1.5.0
6464
# via pytest
6565
pydantic==2.10.3
66-
# via codex
66+
# via codex-sdk
6767
pydantic-core==2.27.1
6868
# via pydantic
6969
pygments==2.18.0
@@ -85,14 +85,14 @@ six==1.16.0
8585
# via python-dateutil
8686
sniffio==1.3.0
8787
# via anyio
88-
# via codex
88+
# via codex-sdk
8989
time-machine==2.9.0
9090
tomli==2.0.2
9191
# via mypy
9292
# via pytest
9393
typing-extensions==4.12.2
9494
# via anyio
95-
# via codex
95+
# via codex-sdk
9696
# via mypy
9797
# via pydantic
9898
# via pydantic-core

requirements.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,33 +12,33 @@
1212
annotated-types==0.6.0
1313
# via pydantic
1414
anyio==4.4.0
15-
# via codex
15+
# via codex-sdk
1616
# via httpx
1717
certifi==2023.7.22
1818
# via httpcore
1919
# via httpx
2020
distro==1.8.0
21-
# via codex
21+
# via codex-sdk
2222
exceptiongroup==1.2.2
2323
# via anyio
2424
h11==0.14.0
2525
# via httpcore
2626
httpcore==1.0.2
2727
# via httpx
2828
httpx==0.28.1
29-
# via codex
29+
# via codex-sdk
3030
idna==3.4
3131
# via anyio
3232
# via httpx
3333
pydantic==2.10.3
34-
# via codex
34+
# via codex-sdk
3535
pydantic-core==2.27.1
3636
# via pydantic
3737
sniffio==1.3.0
3838
# via anyio
39-
# via codex
39+
# via codex-sdk
4040
typing-extensions==4.12.2
4141
# via anyio
42-
# via codex
42+
# via codex-sdk
4343
# via pydantic
4444
# via pydantic-core

0 commit comments

Comments
 (0)