-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 1.01 KB
/
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
[project]
name = "wsserver"
version = "0.2.1"
authors = [
{name="Arseny Turin", email="arseniy.ny@gmail.com"},
]
description = "Simple WebSocket server for education"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Education",
"Natural Language :: English",
]
[project.urls]
Homepage = "https://github.com/arseniyturin/python-websocket"
Issues = "https://github.com/arseniyturin/python-websocket/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/wsserver"]