Skip to content

Commit

Permalink
Renamed project to tempmail-python
Browse files Browse the repository at this point in the history
  • Loading branch information
cubicbyte committed Aug 5, 2023
1 parent 428e52b commit b2c276b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Python Temp Email Library
**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.
**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.

## Installation
You can install py-tempmail using pip:
You can install tempmail-python using pip:
```bash
pip install py-tempmail
pip install tempmail-python
```

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

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

## License
py-tempmail is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.
tempmail-python is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ def read(path: str) -> str:
return f.read()

setup(
name='py-tempmail',
name='tempmail-python',
version='1.0.0',
description='Python library for generating and managing temporary email addresses.',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='cubicbyte',
author_email='[email protected]',
url='https://github.com/cubicbyte/py-tempmail',
url='https://github.com/cubicbyte/tempmail-python',
packages = find_packages(),
license='MIT',
keywords='disposable-email temporary-email temp-email temp-mail email mail email-generator mail-generator',
Expand Down
2 changes: 1 addition & 1 deletion tempmail/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""py-tempmail is a Python library for generating and managing temporary email addresses using the 1secmail service.
"""tempmail-python is a Python library for generating and managing temporary email addresses using the 1secmail service.
Example usage:
```python
Expand Down

0 comments on commit b2c276b

Please sign in to comment.