-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (58 loc) · 1.63 KB
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
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "wotpy"
description = "Python implementation of a W3C WoT Runtime and the WoT Scripting API"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{ name = "Andres Garcia Mangas", email = "andres.garcia@fundacionctic.org" }
]
maintainers = [
{ name = "Nikos Filinis", email = "nfilinis@netmode.ntua.gr" }
]
keywords = ["wot", "iot", "gateway", "fog", "w3c"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
dependencies = [
"tornado>=6.5.2,<7.0",
"jsonschema>=4.25.1",
"reactivex>=5.1.0,<6.0",
"python-slugify>=8.0.4",
"requests-oauthlib>=2.0.0",
"aiocoap[linkheader,oscore]>=0.4.7 ; platform_system != 'Darwin'",
"amqtt>=0.10.1",
"eclipse-zenoh>=1.5.0",
"websockets>=15.0.1"
]
[project.optional-dependencies]
tests = [
"cryptography>=49.0.0",
"pyOpenSSL>=25.1.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"pytest-rerunfailures>=16.0.1",
"pytest-asyncio>=1.1.0",
"faker>=37.6.0"
]
docs = [
"Sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2"
]
[project.urls]
Repository = "https://github.com/eclipse-thingweb/wotpy.git"
[tool.setuptools.dynamic]
version = {attr = "wotpy.__version__.__version__"}