forked from CarloDePieri/pymailtm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (52 loc) · 1.46 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
60
61
62
63
[tool.poetry]
name = "pymailtm"
version = "1.1.1"
description = "A python web api wrapper and command line client for mail.tm."
license = "GPL-3.0-only"
authors = [
"Carlo De Pieri <[email protected]>"
]
readme = 'README.md'
repository = "https://github.com/CarloDePieri/pymailtm"
homepage = "https://github.com/CarloDePieri/pymailtm"
packages = [
{ include = "pymailtm" }
]
keywords = ["mail", "temp", "mail.tm"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Email",
"Topic :: Communications :: Email :: Email Clients (MUA)",
"Topic :: Utilities"
]
[tool.poetry.scripts]
pymailtm = 'pymailtm.cli:init'
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.1"
random-username = "^1.0.2"
pyperclip = "^1.8.2"
[tool.poetry.dev-dependencies]
anyio = "^3.6.1"
yagmail = "^0.15.283"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
pytest-mock = "^3.8.2"
pytest-sugar = "^0.9.5"
pytest-spec = "^3.2.0"
pytest-timeout = "^2.1.0"
coveralls = "^3.3.1"
PyYAML = "^6.0"
pytest-recording = "^0.12.1"
pytest-vcr-delete-on-fail = "^2.0.0"
python-dotenv = "^0.20.0"
vcrpy-encrypt = "^0.9.1"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"