Skip to content

Commit 8907cd0

Browse files
committed
adding pyproject.toml
1 parent ea2b5d3 commit 8907cd0

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

pyproject.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "realtime-pubsub-client"
7+
version = "0.1.0"
8+
description = "The official Realtime Pub/Sub client for Python"
9+
readme = "README.md"
10+
license = { text = "MIT" }
11+
authors = [{ name = "Rolando Santamaria Maso", email = "kyberneees@gmail.com" }]
12+
keywords = ["realtime", "pubsub", "messaging", "websocket", "client", "python"]
13+
requires-python = ">=3.6"
14+
dependencies = [
15+
"websockets>=13.1",
16+
]
17+
classifiers = [
18+
"Programming Language :: Python :: 3",
19+
"License :: OSI Approved :: MIT License",
20+
"Operating System :: OS Independent",
21+
"Framework :: AsyncIO",
22+
"Intended Audience :: Developers",
23+
"Topic :: Software Development :: Libraries",
24+
"Topic :: Communications",
25+
"Topic :: Internet",
26+
"Topic :: System :: Networking"
27+
]
28+
29+
[tool.hatch.build.targets.sdist]
30+
include = [
31+
"src/**/*.py",
32+
"pyproject.toml",
33+
"README.md",
34+
"LICENSE",
35+
]
36+

0 commit comments

Comments
 (0)