-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 1.04 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ossp-sdk"
version = "0.1.0"
authors = [{ name = "OSSP Working Group", email = "info@ossp.io" }]
description = "CloudEvents-first Python SDK for the Open Safety Signal Protocol (OSSP)."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: System :: Monitoring"
]
dependencies = ["requests>=2.25.0"]
[project.optional-dependencies]
validate = ["jsonschema>=4.18"]
[project.urls]
Homepage = "https://ossp.io"
Documentation = "https://ossp.io/sdk.html"
Specification = "https://ossp.io/specification.html"
Repository = "https://github.com/Open-Safety-Signal-Protocol/sdk-python"
Issues = "https://github.com/Open-Safety-Signal-Protocol/sdk-python/issues"
Changelog = "https://github.com/Open-Safety-Signal-Protocol/sdk-python/releases"
[tool.setuptools.packages.find]
where = ["src"]