-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.41 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
[project]
name = "up-bank-api"
version = "0.0.0.dev0"
description = "💎 Typed python client for Up's banking API"
readme = "README.md"
authors = [{ name = "Josh Willox", email = "[email protected]" }]
requires-python = ">=3.8"
dependencies = [
"requests>=2.32.3",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed"
]
[project.urls]
Homepage = "https://jcwillox.github.io/up-bank-api"
Documentation = "https://jcwillox.github.io/up-bank-api"
Repository = "https://github.com/jcwillox/up-bank-api"
"Release Notes" = "https://github.com/jcwillox/up-bank-api/releases"
Issues = "https://github.com/jcwillox/up-bank-api/issues"
Funding = "https://ko-fi.com/jcwillox"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["upbankapi"]
[project.optional-dependencies]
async = [
"aiohttp>=3.10.11",
]
[dependency-groups]
docs = [
"mkdocs-material>=9.5.44",
"mkdocstrings[python]>=0.26.1",
]
dev = [
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-recording>=0.13.2",
"pyyaml>=6.0.2",
]