-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (41 loc) · 1.08 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "kabelwerk"
description = "The Kabelwerk SDK for Python."
readme = "README.rst"
authors = [
{name = "Kabelwerk", email = "[email protected]"},
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Chat",
"Topic :: Internet :: WWW/HTTP",
]
keywords = ["kabelwerk"]
dynamic = ["version"]
dependencies = [
"requests >= 2.31",
]
[project.optional-dependencies]
dev = [
"flit",
"pip-tools",
"pytest",
"responses",
"sphinx",
"sphinx_rtd_theme",
]
[project.urls]
Home = "https://kabelwerk.io"
Changelog = "https://github.com/kabelwerk/sdk-python/blob/master/CHANGELOG.rst"
Documentation = "https://docs.kabelwerk.io/python/"
Source = "https://github.com/kabelwerk/sdk-python"
Tracker = "https://github.com/kabelwerk/sdk-python/issues"
[tool.pip-tools]
all_extras = true