-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.31 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
[tool.poetry]
name = "thingtalk"
version = "0.7.13"
description = "Web of Things framework, high performance, easy to learn, fast to code, ready for production"
authors = ["hidaris <zuocool@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/hidaris/thingtalk"
repository = "https://github.com/hidaris/thingtalk"
documentation = "https://github.com/hidaris/thingtalk/blob/master/README.md"
license = "MPL-2.0"
keywords = ["web-of-things", "webthing", "iot"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/hidaris/thingtalk/issues"
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.87"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
orjson = "^3.8.1"
email_validator = "^1.1.1"
pyee = "^9.0.0"
jsonschema = "^4.17.0"
ifaddr = "^0.2.0"
zeroconf = "^0.39.0"
loguru = "^0.6.0"
mkdocs-material = { version = "^8.5.0", optional = true }
async-cron = "^1.6.2"
gmqtt = "^0.6.9"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
pytest-asyncio = "^0.20.0"
httpx = "^0.23.0"
[tool.poetry.extras]
docs = ["mkdocs-material"]