-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 737 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 737 Bytes
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
[project]
name = "saxo-apy"
version = "0.1.16"
authors = [
{name="Gid van der Ven", email="giddevanderven@gmail.com"}
]
description = "Python Client for Saxo Bank OpenAPI"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Natural Language :: English"
]
dependencies = [
"Flask==2.2.2",
"pydantic==1.10.2",
"httpx==0.23.0",
"websockets==10.4",
"loguru==0.6.0"
]
[project.urls]
"Homepage" = "https://github.com/gidven/saxo-openapi-client-python"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"