gitignore

This commit is contained in:
w.pomp
2026-07-02 15:58:57 +02:00
parent 82375bdd24
commit cfc00fe355
6 changed files with 592 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
[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"]