-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "imapy"
version = "2.0.1a1"
description = "Imapy: Imap for Humans"
authors = ["Vladimir Goncharov <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/vladimarius/imapy"
repository = "https://github.com/vladimarius/imapy"
keywords = ["imap", "email", "library"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Email",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.9" # Updated to 3.9+
flake8 = "^7.1.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
tox = "^3.24"
flake8 = "^7.0"
mypy = "^0.910"
black = "^23.7.0"
click = "^8.0.4"
pre-commit = "^3.8.0"
[tool.poetry.scripts]
format = "scripts:format"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
codecov = "^2.1.13"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/vladimarius/imapy/issues"
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''