-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 923 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tlsrpt_policy"
version = "0.0.3"
authors = [
{ name="sys4 AG", email="[email protected]" },
{ name="Uwe Kamper", email="[email protected]"},
]
description = "Utilities for parsing SMTP TLS reporting (TLSRPT) policies"
readme = "README.md"
requires-python = ">=3.9"
license = "LGPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: LGPL-3.0-or-later",
"Operating System :: OS Independent",
]
dependencies = [
"pyparsing",
"dnspython",
]
[project.optional-dependencies]
test = [
"tox",
"pytest",
"pytest-cov",
]
lint = [
"flake8",
]
[project.urls]
"Homepage" = "https://github.com/sys4/tlsrpt-rr-parser"
"Bug Tracker" = "https://github.com/sys4/tlsrpt-rr-parser/issues"
# [project.scripts]
# search = "tlsrpt_policy.cli:app"
[tool.hatch.build]
only-packages = true