-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 856 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 856 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
32
33
[project]
name = "surehub-api"
version = "7.0.2"
description = "SureHub API is a simple, yet powerful RESTful API for products from Sure Petcare"
license = "Apache-2.0"
authors = [
{ name = "Fabian Eulitz", email = "dev@sustineo.de" },
]
keywords = ["SureHub", "Sure Petcare", "REST", "API"]
requires-python = ">=3.10"
dependencies = [
"uvicorn>=0.46.0,<1.0.0",
"dynaconf>=3.2.13,<4.0.0",
"fastapi>=0.136.1,<1.0.0",
"requests>=2.33.1,<3.0.0",
"pyjwt>=2.12.1,<3.0.0",
]
[project.urls]
repository = "https://github.com/fabieu/surehub-api"
documentation = "https://fabieu.github.io/surehub-api/"
[dependency-groups]
dev = [
"pytest>=9.0.2,<10.0.0",
"vermin>=1.8.0,<2.0.0",
"autopep8>=2.3.2,<3.0.0",
"httpx>=0.28.1,<1.0.0",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"