-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (48 loc) · 1.29 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wise_client"
version = "0.0.2a0"
description = "An asynchronous HTTP API wrapper for the Wise API"
authors = [
{ name = "Chen Kang Yang" }
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["wise", "transferwise", "async", "REST API", "api", "exchange rate",
"currency", "finance"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = { file = "LICENSE" }
dependencies = [
"anyio==4.0.0",
"certifi==2023.11.17",
"h11==0.14.0",
"h2==4.1.0",
"hpack==4.0.0",
"httpcore==1.0.2",
"httpx==0.25.2",
"hyperframe==6.0.1",
"idna==3.4",
"rfc3986==2.0.0",
"sniffio==1.3.0",
]
[project.optional-dependencies]
test = [
"pytest==7.4.3",
"pytest-asyncio==0.21.1",
"pytest-cov==4.1.0",
"pytest-httpx==0.27.0",
]
doc = [
]
[project.urls]
repository = "https://github.com/chen-ky/wise-client.git"
changelog = "https://github.com/chen-ky/wise-client/releases"
"Bug Tracker" = "https://github.com/chen-ky/wise-client/issues"