Skip to content

Commit b2c276b

Browse files
committed
Renamed project to tempmail-python
1 parent 428e52b commit b2c276b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Python Temp Email Library
2-
**py-tempmail** is a Python library for generating and managing temporary email addresses using the 1secmail service. It provides functions for creating email addresses, checking for new messages, and retrieving message contents.
2+
**tempmail-python** is a Python library for generating and managing temporary email addresses using the 1secmail service. It provides functions for creating email addresses, checking for new messages, and retrieving message contents.
33

44
## Installation
5-
You can install py-tempmail using pip:
5+
You can install tempmail-python using pip:
66
```bash
7-
pip install py-tempmail
7+
pip install tempmail-python
88
```
99

1010
Or you can install it from source:
1111
```bash
12-
pip install git+https://github.com/cubicbyte/py-tempmail.git
12+
pip install git+https://github.com/cubicbyte/tempmail-python.git
1313
```
1414

1515
## Usage example
@@ -53,4 +53,4 @@ print(msg['body'])
5353
- `tempmail.DOMAINS`: List of available email domains.
5454

5555
## License
56-
py-tempmail is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.
56+
tempmail-python is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ def read(path: str) -> str:
55
return f.read()
66

77
setup(
8-
name='py-tempmail',
8+
name='tempmail-python',
99
version='1.0.0',
1010
description='Python library for generating and managing temporary email addresses.',
1111
long_description=read('README.md'),
1212
long_description_content_type='text/markdown',
1313
author='cubicbyte',
1414
author_email='[email protected]',
15-
url='https://github.com/cubicbyte/py-tempmail',
15+
url='https://github.com/cubicbyte/tempmail-python',
1616
packages = find_packages(),
1717
license='MIT',
1818
keywords='disposable-email temporary-email temp-email temp-mail email mail email-generator mail-generator',

tempmail/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""py-tempmail is a Python library for generating and managing temporary email addresses using the 1secmail service.
1+
"""tempmail-python is a Python library for generating and managing temporary email addresses using the 1secmail service.
22
33
Example usage:
44
```python

0 commit comments

Comments
 (0)