-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (62 loc) · 1.56 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
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.1"]
build-backend = "setuptools.build_meta"
[project]
name = "ispdb"
dynamic = ["version"]
description = "ISPDB command line tool"
readme = "README.md"
authors = [
{name = "Germán Fuentes Capella"}
]
maintainers = [
{name = "Germán Fuentes Capella"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Topic :: Communications :: Email",
"Topic :: Communications :: Email :: Post-Office :: IMAP",
"Topic :: Communications :: Email :: Post-Office :: POP3",
]
license = { file = "LICENSE" }
dependencies = [
"requests>=2.31",
"dnspython>=2.6.1",
]
[project.optional-dependencies]
dev = [
"coverage>7.5", # testing
"mypy>=1.10", # type checking
"pytest>=8.2", # testing
"ruff>=0.4", # linting
"types-requests>=2.32",
"requests-mock>=1.12",
"pytest-mock>=3.14",
]
[project.urls]
bugs = "https://github.com/cloudgerman/ispdb/issues"
homepage = "https://github.com/cloudgerman/ispdb"
[project.scripts]
ispdb = "ispdb.main:main"
[tool.setuptools_scm]
version_file = "src/ispdb/version.py"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.mypy]
files = "."
strict = true
warn_unreachable = true
warn_no_return = true
[tool.ruff]
src = ["src", "tests"]
line-length = 120