File: pyproject.toml

package info (click to toggle)
spf-engine 3.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 484 kB
  • sloc: python: 1,625; sh: 116; makefile: 14
file content (47 lines) | stat: -rw-r--r-- 1,351 bytes parent folder | download | duplicates (2)
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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "spf-engine"
description = "SPF (Sender Policy Framework) processing engine for Postfix policy server and Milter implemented in Python."
readme = "README.txt"
requires-python = ">=3.3"
license = {file = "COPYING"}
authors = [{name = "Scott Kitterman", email = "scott@kitterman.com"}]
keywords = ['Postfix', 'Sendmail', 'milter', 'spf', 'email']
classifiers = [
    'Development Status :: 5 - Production/Stable',
    'Environment :: No Input/Output (Daemon)',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: Apache Software License',
    'Natural Language :: English',
    'Operating System :: POSIX',
    'Programming Language :: Python :: 3',
    'Topic :: Communications :: Email :: Mail Transport Agents',
    'Topic :: Communications :: Email :: Filters',
]
dependencies = [
    'pyspf',
    'authres',
]
dynamic = ["version"]

[project.scripts]
policyd-spf = "spf_engine.policyd_spf:main"
pyspf-milter = "spf_engine.milter_spf:main"

[project.optional-dependencies]
milter = [
    'pymilter',
]

[project.urls]
Home = "https://launchpad.net/spf-engine"

[tool.flit.sdist]
include = ["CHANGES", "README.per_user_whitelisting"]
exclude = ["test_suite", "TODO", ".gitignore"]

[tool.flit.external-data]
directory = "data"