forked from sumnerevans/offlinemsmtp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.39 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
54
55
56
57
58
59
[tool.poetry]
name = "offlinemsmtp"
version = "0.3.10"
description = "msmtp wrapper allowing for offline use"
authors = ["Sumner Evans <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/sumnerevans/offlinemsmtp"
keywords = ["email", "msmtp", "offline"]
include = [ { path = "offlinemsmtp/*" } ]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
"Topic :: Communications :: Email :: Mail Transport Agents",
]
[tool.poetry.scripts]
offlinemsmtp = "offlinemsmtp.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sumnerevans/offlinemsmtp/issues"
[tool.poetry.dependencies]
python = "^3.8"
inotify = "^0.2.10"
PyGObject = "^3.42.2"
[tool.poetry.group.dev.dependencies]
black = "^21.12b0"
docutils = "^0.16"
flake8 = "^3.8.3"
flake8-isort = "^4.1.1"
flake8-pep3101 = "^1.3.0"
isort = "^5.10.1"
jedi = ">=0.17.2"
mypy = "^0.782"
rope = "^0.17.0"
rst2html5 = "^1.10.6"
sphinx = "^3.2.1"
termcolor = "^1.1.0"
twine = "^3.2.0"
pre-commit = "^2.17.0"
ropevim = "^0.8.1"
pylint = "^2.15.0"
pudb = "^2022.1.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
target-version = ["py38"]