-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.22 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["nightwatch"]
exclude = ["nightwatch/desktop"]
[tool.hatch.version]
path = "nightwatch/__init__.py"
[tool.uv.sources]
indigo-logger = { git = "https://github.com/iiPythonx/il" }
[project]
name = "nightwatch-chat"
dynamic = ["version"]
authors = [
{ name = "iiPython", email = "[email protected]" },
]
description = "The chatting application to end all chatting applications."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"emoji>=2.14.0",
"nanoid>=2.0.0",
"orjson>=3.10.11",
"readchar>=4.2.1",
"requests>=2.32.3",
"urwid>=2.6.16",
"websockets>=14.1",
]
[project.optional-dependencies]
serve = [
"fastapi>=0.115.5",
"indigo-logger",
"pydantic>=2.9.2",
"python-multipart>=0.0.17",
"uvicorn[standard]>=0.32.1",
]
[project.urls]
Homepage = "https://github.com/iiPythonx/nightwatch"
Issues = "https://github.com/iiPythonx/nightwatch/issues"
[project.scripts]
nightwatch = "nightwatch.client.__main__:main"