-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (64 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (64 loc) · 1.72 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
65
66
67
68
69
70
71
72
73
[project]
name = "microschc"
description = "A Python implementation of the Static Context Header Compression (SCHC) protocol"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
keywords = ["schc", "compression", "iot", "lpwan"]
authors = [
{ name = "Quentin Lampin", email = "quentin.lampin@orange.com" }
]
maintainers = [
{ name = "Quentin Lampin", email = "quentin.lampin@orange.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications",
]
dependencies = [
"typing-extensions>=4.0.0",
"backports.strenum; python_version < '3.11'",
]
dynamic = ["version"]
[project.optional-dependencies]
extras = [
"python-pcapng"
]
[project.urls]
"Homepage" = "https://github.com/quentinlampin/microschc/"
"Bug Tracker" = "https://github.com/quentinlampin/microschc/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "microschc/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.pytest_cache",
"/.vscode",
"/tests/",
"/.gitignore",
"/CODE_OF_CONDUCT.md",
"/microschc-implementation.md"
]
[tool.hatch.build.targets.wheel]
packages = ["microschc"]
[tool.hatch.envs.test]
dependencies = [
"pytest"
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pytest>=8.3.5",
]