-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.42 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
[project]
name = "santander-python-sdk"
dynamic = ["version"]
description = "Client não oficial da API do Santander em Python"
authors = [
{ name = "Samuel Rodrigues Coelho", email = "samuel.coelho@buser.com.br" },
{ name = "Erle Carrara", email = "erle.carrara@buser.com.br" },
{ name = "Walison Filipe", email = "walison.filipe@buser.com.br" },
]
readme = "README.md"
keywords = ["santander", "api", "client", "python"]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["python-dateutil~=2.0", "requests>=2"]
[project.urls]
homepage = "https://github.com/buserbrasil/santander-python-sdk"
repository = "https://github.com/buserbrasil/santander-python-sdk"
[tool.uv]
package = true
dev-dependencies = [
"pytest>=7.0.0",
"requests-mock>=1.10.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.14.0",
"ruff>=0.9.5",
"pytest-responses>=0.5.1",
"freezegun>=1.5.1",
]
[tool.ruff.lint]
flake8-tidy-imports.ban-relative-imports = "all"
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "dirty-tag"