30 lines
712 B
TOML
30 lines
712 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "olm2eml"
|
|
version = "0.1.0"
|
|
description = "Convert OLM-extracted email XML files to standard EML format"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
authors = [
|
|
{ name = "Wim Pomp-Pervova" },
|
|
]
|
|
license = { text = "MIT OR Apache-2.0" }
|
|
|
|
[project.urls]
|
|
repository = "https://git.wimpomp.nl/wim/olm2eml"
|
|
|
|
[project.scripts]
|
|
olm2eml = "olm_xml_to_eml:main"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["olm_xml_to_eml"]
|