Skip to content

Commit

Permalink
jonnieey PR
Browse files Browse the repository at this point in the history
  • Loading branch information
prtolem committed Apr 24, 2024
2 parents 94b484e + ac041ba commit 3ca6b98
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions mailtmapi/schemas/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ class OneMessage(BaseModel):
subject: str
flagged: bool
isDeleted: bool
verifications: list[str]
verifications: dict
retention: bool
retentionDate: str
text: str
html: list[str]
hasAttachments: bool
attachments: list[Attachment]
attachments: list[Attachment] = None
size: int
downloadUrl: str
createdAt: str
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ classifiers = [

[project.urls]
"Homepage" = "https://github.com/prtolem/MailTM"
"Bug Tracker" = "https://github.com/prtolem/MailTM/issues"
"Bug Tracker" = "https://github.com/prtolem/MailTM/issues"

[tool.hatch.build.targets.wheel]
packages = ["mailtm"]
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
setup(name='mailtmapi',
version='1.1',
description='Python API wrapper for mail.tm',
packages=['mailtmapi'],
packages=['mailtm'],
author_email='[email protected]',
zip_safe=False,
url='https://github.com/prtolem/MailTM',
install_requires=[
'aiohttp==3.9.2',
'aiohttp==3.8.1',
'pydantic==1.10.2',
])

0 comments on commit 3ca6b98

Please sign in to comment.