mirror of
https://github.com/status-im/status-python-sdk.git
synced 2026-08-27 20:21:07 +00:00
62 lines
1.5 KiB
TOML
62 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=77"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "status-sdk"
|
|
version = "1.1.3"
|
|
description = "Private chat. Communities. Multi-chain wallet. Browser. dApps all in one app, powered by SNT."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
license-files = ["LICENSE.txt"]
|
|
authors = [{ name = "Status Research & Development GmbH" }]
|
|
keywords = ["privacy", "decentralized", "messenger", "ethereum", "blockchain", "cryptocurrency"]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
dependencies = [
|
|
"requests",
|
|
"websocket-client",
|
|
"websockets",
|
|
"pandas",
|
|
"pillow",
|
|
"eth-abi",
|
|
"pyyaml",
|
|
"pycryptodome"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
agents = [
|
|
"tabulate",
|
|
"langchain",
|
|
"langchain-core",
|
|
"langchain-groq",
|
|
"python-dotenv",
|
|
]
|
|
group-chat-moderator = [
|
|
"detoxify",
|
|
"python-dotenv"
|
|
]
|
|
community-greet = [
|
|
"ollama",
|
|
"python-dotenv"
|
|
]
|
|
|
|
[project.urls]
|
|
Source = "https://github.com/status-im/status-python-sdk"
|
|
Issues = "https://github.com/status-im/status-python-sdk/issues"
|
|
"Status App" = "https://status.app/"
|
|
"Status Backend" = "https://github.com/status-im/status-go"
|
|
|
|
[tool.setuptools]
|
|
packages = ["status_sdk", "status_sdk.community"]
|
|
|
|
[tool.setuptools.package-data]
|
|
status_sdk = ["docker-compose.yaml"]
|
|
|