forked from emailable/emailable-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1.02 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
[tool.poetry]
name = "emailable-backport"
version = "1.0.0"
description = "This is the backport to python 2.7 of the official python wrapper for the Emailable API."
authors = ["Bernardo Duarte <[email protected]>"]
homepage = "https://github.com/bernardoduarte"
repository = "https://github.com/bernardoduarte/emailable-python-backport"
license = "MIT"
readme = "README.md"
keywords = ["emailable", "email", "verification"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment"
]
packages = [
{ include = "emailable" }
]
[tool.poetry.dependencies]
python = "^2.7"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
tox = "^3.14.3"
pytest = "4.6.11"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"