-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.04 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
[tool.poetry]
name = "paddle-client"
packages = [
{include = "paddle"}
]
version = "1.0.0"
description = "Python wrapper around the Paddle.com API"
license = "MIT"
authors = ["Matt Pye <pyematt@gmail.com>"]
readme = "README.md"
repository = "https://github.com/paddle-python/paddle-client"
homepage = "https://github.com/paddle-python/paddle-client"
keywords = ["paddle", "paddle.com", "payments", "billing", "commerce", "finance", "saas"]
[tool.poetry.dependencies]
python = "^3.5.0"
requests = "^2.23.0"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
mypy = "^0.770"
isort = {extras = ["pyproject"], version = "^4.3.21"}
flake8 = "^3.8.2"
pytest-cov = "^2.9.0"
tox = "^3.15.1"
pytest-mock = "^3.1.0"
sphinx = "^3.1.1"
sphinx-rtd-theme = "^0.5.0"
sphinx-autodoc-typehints = "^1.11.0"
[tool.isort]
line_length = 79
multi_line_output = 5
known_third_party = "pytest"
known_first_party = "paddle"
skip_glob = "__pycache__/*,venv/*,.venv/*,.tox/*,.mypy_cache"
not_skip = "__init__.py"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"