-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (43 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
42
43
44
45
46
47
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "elody"
version = "0.0.162"
description = "elody SDK for Python"
readme = "README.md"
authors = [{ name = "Inuits", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["elody", "SDK"]
dependencies = [
"certifi>=2023.5.7",
"charset-normalizer>=3.2.0",
"idna>=3.4",
"requests>=2.31.0",
"urllib3>=1.26.16",
]
[project.optional-dependencies]
loader = [
"APScheduler>=3.10.4",
"cloudevents>=1.9.0",
"inuits-policy-based-auth>=10.0.1",
"jsonschema>=4.23.0",
"pytz>=2024.1",
"six>=1.16.0",
"tzlocal>=5.2",
]
util = [
"cloudevents>=1.9.0",
]
[project.urls]
Homepage = "https://github.com/inuits/elody-python-sdk"