-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 928 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
[tool.poetry]
name = "seppmail-converter"
version = "1.2.0"
description = "Decode SEPPMail emails into EML files"
license = "AGPL-3.0-or-later"
authors = ["Daniel Malik <[email protected]>"]
readme = "README.md"
classifiers = ["Environment :: Console"]
repository = "https://github.com/mhsp/seppmail-converter"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31"
click = "^8.1.6"
beautifulsoup4 = "^4.12.2"
lxml = "^4.9.3"
[tool.poetry.scripts]
seppmail-converter = 'seppmail_converter.main:entry'
[tool.poetry.group.dev.dependencies]
python-semantic-release = "^8.0.4"
black = "^23.7.0"
[tool.semantic_release]
version.variable = [
"seppmail_converter/__init__.py:__version__",
"pyproject.toml:version",
]
branch = "master"
upload_to_pypi = true
upload_to_release = true
build_command = "poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"