Skip to content

Commit

Permalink
Merge branch 'jonnieey-dev' into branch
Browse files Browse the repository at this point in the history
  • Loading branch information
prtolem committed Apr 24, 2024
2 parents b066212 + 3ca6b98 commit 3b5051e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 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
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "MailTMAPI"
version = "1.0.0"
version = "1.1.0"
authors = [
{ name="prtolem", email="[email protected]" },
]
Expand All @@ -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 3b5051e

Please sign in to comment.