-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 976 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "realtime-pubsub-client"
version = "1.0.0"
description = "The official Realtime Pub/Sub client for Python"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Rolando Santamaria Maso", email = "kyberneees@gmail.com" }]
keywords = ["realtime", "pubsub", "messaging", "websocket", "client", "python"]
requires-python = ">=3.6"
dependencies = [
"websockets>=13.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: System :: Networking"
]
[tool.hatch.build.targets.sdist]
include = [
"realtime_pubsub_client/**/*.py",
"pyproject.toml",
"README.md",
"LICENSE",
]