-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.54 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
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gbp-stack"
version = "1.5.5"
description = "Python bindings for the Group Protocol Stack: a layered, end-to-end encrypted group-messaging protocol family built on top of MLS (RFC 9420)."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [{ name = "Group Protocol Stack contributors" }]
keywords = ["mls", "rfc9420", "e2ee", "group-messaging", "chat", "voice", "signaling", "cryptography", "ffi"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
]
[project.urls]
Homepage = "https://github.com/F000NKKK/Group-Protocol-Stack"
Repository = "https://github.com/F000NKKK/Group-Protocol-Stack"
Documentation = "https://github.com/F000NKKK/Group-Protocol-Stack#readme"
Issues = "https://github.com/F000NKKK/Group-Protocol-Stack/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["gbp_stack*"]
[tool.setuptools.package-data]
"gbp_stack" = [
"_native/win-x64/*.dll",
"_native/linux-x64/*.so",
"_native/osx-x64/*.dylib",
"_native/osx-arm64/*.dylib",
]