-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 934 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 934 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "payload-api"
version = "0.5.1"
description = "Payload Python Library"
authors = [
{name = "Payload", email = "help@payload.com"},
]
dependencies = ["requests", "six", "urllib3>=1.26.5", "importlib-metadata"]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "MIT"}
[project.urls]
Homepage = "https://payload.com"
Documentation = "https://docs.payload.com"
Repository = "https://github.com/payload-code/payload-python"
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.pdm]
allow_prereleases = true
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[tool.pdm.dev-dependencies]
dev = [
"black",
"pathlib",
"pytest",
"python-dateutil",
"mock",
"pylint",
"faker"
]
[tool.pdm.scripts]
_.env_file = ".env"
[tool.black]
line-length = 96
target-version = ['py311']
skip-string-normalization = true