-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.22 KB
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
[tool.poetry]
name = "messages"
version = "0.8.0"
description = "Easy and efficient messaging."
readme = "README.md"
authors = ["Tim Phillips <phillipstr@gmail.com>"]
repository = "https://github.com/trp07/messages"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Chat",
"Topic :: Communications :: Email",
"Topic :: Education :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
include = ["CHANGES.md"]
[tool.poetry.dependencies]
python = "^3.7"
validus = "^0.3.0"
httpx = "^0.19.0"
aiosmtplib = "^1.1.6"
[tool.poetry.dev-dependencies]
pytest-cov = "^2.6"
pytest-mock = "^1.10"
pytest-httpx = "^0.13.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"