-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (59 loc) · 1.42 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
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
65
66
67
[project]
name = "asaaspy"
version = "0.28.2"
description = "Unnoficial python client for Asaas"
authors = [
{name = "Jonhnatha Trigueiro", email = "[email protected]"},
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.8.2",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "LGPL 2.1"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Documentation = "https://asaaspy.readthedocs.io/pt-br/latest"
Source = "https://github.com/joepreludian/asaaspy"
Tracker = "https://github.com/joepreludian/asaaspy/issues"
[project.optional-dependencies]
docs = [
"mkdocs-material>=9.5.27",
"mkdocs-mermaid2-plugin>=1.1.1",
"markdown>=3.6",
]
dev = [
"pytest>=8.2.2",
"pytest-cov>=5.0.0",
"pytest-vcr>=1.0.2",
"Faker>=26.0.0",
"factory-boy>=3.3.0",
"Flake8-pyproject>=1.2.3",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.coverage.run]
source = ['src']
[tool.pytest.ini_options]
pythonpath = [
"src/asaaspy"
]
testpaths = [
"tests",
]
[tool.flake8]
ignore = ['N815']
max-line-length = 88