-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tlsrpt"
version = "0.5.0rc1"
authors = [
{ name="sys4 AG", email="[email protected]" },
{ name="Boris Lohner", email="[email protected]"},
]
description = "Collectd, fetcher and reportd software for SMTP TLS reporting (TLSRPT)"
readme = "README.md"
requires-python = ">=3.7"
license = "GPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
]
[project.optional-dependencies]
test = [
"tox",
]
dev = [
"build==1.2.2",
"twine==5.1.1",
]
[project.urls]
"Homepage" = "https://github.com/sys4/tlsrpt-reporter"
"Bug Tracker" = "https://github.com/sys4/tlsrpt-reporter/issues"
[project.scripts]
tlsrpt-fetcher = "tlsrpt.tlsrpt:tlsrpt_fetcher_main"
tlsrpt-collectd = "tlsrpt.tlsrpt:tlsrpt_collectd_main"
tlsrpt-reportd = "tlsrpt.tlsrpt:tlsrpt_reportd_main"
[project.entry-points."tlsrpt.collectd"]
sqlite = "tlsrpt.tlsrpt:TLSRPTCollectdSQLite"
dummy = "tlsrpt.tlsrpt:DummyCollectd"
[project.entry-points."tlsrpt.fetcher"]
sqlite = "tlsrpt.tlsrpt:TLSRPTFetcherSQLite"
[tool.hatch.build]
only-packages = false
[tool.hatch.build.targets.wheel]
packages = ["tlsrpt"]