-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.74 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
dependencies = [
"distro",
"imaplib2>=3.5",
"rfc6555"
]
name = "offlineimap"
version = "8.0.2"
description = "IMAP synchronization tool"
authors = [
{ name = "John Goerzen & contributors", email = "jgoerzen@complete.org" }
]
license = "GPL-2.0-or-later"
license-files = ["COPYING"]
readme = "README.md"
keywords = ["client", "imap", "cli", "email", "mail", "synchronization", "sync", "offline"]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Office/Business :: Scheduling",
"Topic :: Utilities"
]
[project.urls]
homepage = "http://www.offlineimap.org"
documentation = "https://www.offlineimap.org/documentation.html"
issues = "https://github.com/OfflineIMAP/offlineimap3/issues"
repository = "https://github.com/OfflineIMAP/offlineimap3/"
[build-system]
requires = [
"setuptools>=18.5",
"wheel"
]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
cygwin = ["portalocker[cygwin]"]
kerberos = ["gssapi[kerberos]"]
keyring = ["keyring"]
pysocks = ["pysocks"]
testinternet = ["certifi~=2020.6.20", "urllib3~=1.25.9"]
[project.scripts]
offlineimap = "offlineimap.init:main"
[tool.setuptools.packages.find]
include = ["offlineimap*"]
exclude = ["contrib*", "test*", "docs*"]