Skip to content

Commit 7232a25

Browse files
committed
Change package to temp-mail
1 parent fe9b155 commit 7232a25

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/test-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ jobs:
5353
- name: Test installation from TestPyPI
5454
run: |
5555
sleep 30 # Wait for package to be available
56-
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ temp-mail-io
56+
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ temp-mail
5757
python -c "import tempmail; print('✓ Package installed successfully from TestPyPI')"
5858
python -c "from tempmail import TempMailClient; print('✓ TempMailClient imports successfully')"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Temp Mail Python Library
22

3-
[![PyPI version](https://badge.fury.io/py/temp-mail-io.svg)](https://badge.fury.io/py/temp-mail-io)
4-
[![Python Support](https://img.shields.io/pypi/pyversions/temp-mail-io.svg)](https://pypi.org/project/temp-mail-io/)
3+
[![PyPI version](https://badge.fury.io/py/temp-mail-io.svg)](https://badge.fury.io/py/temp-mail)
4+
[![Python Support](https://img.shields.io/pypi/pyversions/temp-mail.svg)](https://pypi.org/project/temp-mail/)
55
[![Test Status](https://github.com/temp-mail-io/temp-mail-python/workflows/Test/badge.svg)](https://github.com/temp-mail-io/temp-mail-python/actions/workflows/test.yml)
66
[![codecov](https://codecov.io/gh/temp-mail-io/temp-mail-python/branch/main/graph/badge.svg)](https://codecov.io/gh/temp-mail-io/temp-mail-python)
77
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8-
[![Downloads](https://pepy.tech/badge/temp-mail-io)](https://pepy.tech/project/temp-mail-io)
8+
[![Downloads](https://pepy.tech/badge/temp-mail)](https://pepy.tech/project/temp-mail)
99

1010
Official Python library for the [Temp Mail API](https://temp-mail.io). Create temporary email addresses and receive emails programmatically.
1111

1212
## Installation
1313

1414
```bash
15-
pip install temp-mail-io
15+
pip install temp-mail
1616
```
1717

1818
## Quick Start

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ requires = ["flit_core >=3.2,<4"]
33
build-backend = "flit_core.buildapi"
44

55
[project]
6-
name = "temp-mail-io"
6+
name = "temp-mail"
77
dynamic = ["version", "description"]
88
author = [{name = "Mikhail Mitiaev", email = ""}]
99
readme = "README.md"
10-
keywords = ["temp-mail", "temp-mail-api", "temp-mail-io"]
10+
keywords = ["temp-mail", "temp-mail-api", "tempmail", "temp-mail-io"]
1111
requires-python = ">=3.8"
1212
dependencies = [
1313
"requests>=2.25.0",

tempmail/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Official Temp Mail API (https://temp-mail.io) Wrapper for Python.
33
"""
44

5-
__version__ = "0.1.0b2"
5+
__version__ = "1.0.0b1"
66

77
from .client import TempMailClient
88
from .models import (

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)