-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "paywithextend"
description = "Python client for the Extend API"
readme = "README.md"
authors = [{ name = "Extend Engineering", email = "support@paywithextend.com" }]
dynamic = ["version"]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"build",
"httpx>=0.24.0",
"typing-extensions>=4.0.0",
"python-dotenv==1.0.1",
]
[project.urls]
"Issue Tracker" = "https://github.com/paywithextend/extend-python/issues"
"Source Code" = "https://github.com/paywithextend/extend-python"
[tool.hatch.version]
path = "extend/__version__.py"
[tool.hatch.build.targets.wheel]
packages = ["extend"]
[tool.hatch.build]
packages = ["extend"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0",
"black>=23.0",
"isort>=5.0",
"jupyter>=1.0.0",
"ipykernel>=6.0.0",
"notebook>=7.0.0",
"pytest-mock==3.14.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: marks tests as integration tests"
]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
multi_line_output = 3