-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
41 lines (38 loc) · 1.11 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
[build-system]
requires = [
"hatchling",
"hatch-vcs",
]
build-backend = "hatchling.build"
[project]
name = "c8y_api"
dynamic = ["version"]
authors = [{name="Christoph Souris", email="christoph.souris@gmail.com"}]
description = "Python microservice and application client for the Cumulocity REST API"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"cachetools",
"Deprecated",
"inputimeout",
"PyJWT",
"python-dateutil",
"PyYAML",
"requests",
"websockets",
]
[project.urls]
Homepage = "https://github.com/SoftwareAG/cumulocity-python-api"
Source = "https://github.com/SoftwareAG/cumulocity-python-api"
Issues = "https://github.com/SoftwareAG/cumulocity-python-api/issues"
Documentation = "https://cumulocity-python-api.readthedocs.io/en/latest/"
[tool.hatch.version]
source = "vcs"