generated from carTloyal123/cryze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (27 loc) · 819 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
[project]
name = "cryze_server"
version = "0.0.18"
description = "Cryze Websocket server that coordinates the Cryze-Android app and the outside world."
readme = "README.md"
requires-python = ">=3.11"
authors = [{name = "Carson Loyal", email = "[email protected]"}]
license = {file = "LICENSE"}
dependencies = [
"websockets",
"asyncio"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
cryze-server = "cryze_server.run_server:main"
[tool.poetry]
name = "cryze_server"
description = "Cryze Websocket server that coordinates the Cryze-Android app and the outside world."
authors = ["Carson Loyal <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
websockets = "^9.0"
asyncio = "^3.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2"