-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (37 loc) · 968 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
33
34
35
36
37
38
39
40
41
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "parser/_version.py"
[tool.ruff]
line-length = 120
select = ["E", "F", "B", "Q"]
[project]
name = "mittaridatapumppu-parser"
description = """\
Python based microservice that consumes streaming data and converts it from \
raw format to something else as defined in corresponding parser modules \
obtained from device metadata \
"""
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"fvhiot[kafka]@https://github.com/ForumViriumHelsinki/FVHIoT-python/releases/download/v1.0.2/FVHIoT-1.0.2-py3-none-any.whl",
"fastapi ~= 0.109.0",
"kafka-python ~= 2.0.2",
"httpx ~= 0.26.0",
"pydantic ~= 2.5.3",
"sentry_asgi ~= 0.2.0",
"uvicorn ~= 0.27.0"
]
[project.optional-dependencies]
dev = [
"pre-commit ~= 3.6.0",
]
test = [
"ruff ~= 0.1.15",
"msgpack ~= 1.0.7"
]