-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
32 lines (29 loc) · 1004 Bytes
/
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
[tool.poetry]
name = "pykhipu"
version = "0.1.9"
description = "Wrapper for the Khipu payment service API v2.0"
authors = ["Pablo Albornoz <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "http://github.com/fixmycode/pykhipu"
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Console",
]
[tool.poetry.dependencies]
python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
requests = "^2.24.0"
python-dateutil = "^2.8.1"
six = "^1.15.0"
importlib_metadata = {version = "^1.7.0", python = "<3.9"}
mock = {version = "3.0.5", python = "~2.7"}
[tool.poetry.dev-dependencies]
pylint = {version = "^2.5.3", python = ">=3.5"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"