-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.33 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
[project]
name = "Monzo-API"
version = "1.2.3"
authors = [{ name = "Peter McDonald", email = "git@petermcdonald.co.uk"}]
description = "Package to interact with the API provided by Monzo bank"
keywords = ["monzo", "bank", "api"]
readme = "README.rst"
license = { file = "LICENSE" }
requires-python = ">=3.12"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Office/Business :: Financial",
"Typing :: Typed",
]
[project.urls]
homepage = "https://github.com/petermcd/monzo-api"
repository = "https://github.com/petermcd/monzo-api.git"
issues = "https://github.com/petermcd/monzo-api/issues"
documentation = "https://monzo-api.readthedocs.io"
[dependency-groups]
dev = [
"pygments>=2.20.0", # To resolve security vulnerabilities in dependencies pytest sphinx
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"pytest-mock>=3.15.1",
"ruff>=0.15.10",
"sphinx>=9.1.0",
"sphinx-rtd-theme>=3.1.0",
"troml>=0.4.1",
"ty>=0.0.29",
]
[tool.pytest.ini_options]
addopts = "--cov=monzo --cov-report term-missing --cov-report xml:coverage.xml"
[tool.ruff]
line-length = 120