-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 893 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (31 loc) · 893 Bytes
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
[tool.poetry]
name = "emailee"
version = "1.0.0"
description = "A robust smtp email send tool, with asyncronous send capability"
authors = ["Matt Walsh <git@mattwalsh.dev>"]
license = "MIT"
readme = "README.md"
repository = "http://github.com/mattwalshdev/emailee"
documentation = "http://github.com/mattwalshdev/emailee/README.md"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Mail Transport Agents',
]
[tool.poetry.dependencies]
python = "^3.6.1"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
pytest-cov = "^2.11.1"
pre-commit = "^2.12.1"
flake8 = "^3.9.1"
tox = "^3.23.0"
pytest = "^6.2.3"
mypy = "^0.812"
black = "^20.8b1"
isort = "^5.8.0"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"