-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.22 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "aioimaplib"
version = "2.0.1"
description = "Python asyncio IMAP4rev1 client library"
authors = ["Bruno THOMAS <[email protected]>"]
license = "GPL-3.0"
readme = "README.rst"
repository = "https://github.com/iroco-co/aioimaplib"
keywords = ["asyncio", "mail", "imap"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Email :: Post-Office :: IMAP",
"Topic :: Internet"
]
packages = [{include = "aioimaplib"}]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
pytest-asyncio = "^0.25"
pytest-rerunfailures = "^15.0"
pytz = "^2024"
tzlocal = "^5.2"
imaplib2 = "3.6"
docutils = "^0.21"
pyOpenSSL = "^24.3"
httpx-oauth = "^0.16"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
imap-testing-server = "aioimaplib.imap_testing_server:main"