-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.18 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
[tool.poetry]
name = "remote-email-filtering"
version = "0.2.4"
description = "Email client library for automation"
authors = ["Gaurav Juvekar <[email protected]>"]
license = "MIT"
readme = 'README.rst'
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Email :: Email Clients (MUA)",
"Topic :: Communications :: Email :: Filters",
]
homepage = "https://github.com/gauravjuvekar/remote-email-filtering"
repository = "https://github.com/gauravjuvekar/remote-email-filtering"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/gauravjuvekar/remote-email-filtering/issues"
[tool.poetry.dependencies]
python = "^3.10"
IMAPClient = "^2.3.1"
exchangelib = "^4.7.6"
[tool.poetry.dev-dependencies]
google-auth-oauthlib = "^0.5.2"
google-api-python-client = "^2.55.0"
dateparser = "^1.1.1"
isort = "^5.10.1"
[tool.poetry.group.dev.dependencies]
msal = "^1.18.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"