-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (52 loc) · 1.36 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
[project]
name = "mhi"
version = "0.8.6"
requires-python = ">=3.8"
description = "MH for IMAP"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Paul Jimenez", email = "[email protected]"}
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Communications :: Email :: Email Clients (MUA)',
]
dependencies = [
"configobj",
]
[project.urls]
Homepage = "http://github.com/pjz/mhi"
Repository = "http://github.com/pjz/mhi.git"
[project.gui-scripts]
mhi = 'mhi:cli'
mhiWrap = 'mhi:cmd_main'
[project.optional-dependencies]
dev = [
"mock",
"twine",
"pytest",
"pytest-cov",
"pytest-mypy",
"pytest-pylint",
"pytest-timeout",
"pytest-runfailed",
]
[mypy]
ignore_missing_imports = true
[tool.black]
line-length = 160
target-version = ['py38']
skip-string-normalization = true
quiet = true