-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.19 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
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm>=6.2",
"cython"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "streaming_receiver/_version.py"
[project]
name = "streaming_receiver"
authors = [
{ name=" Clemens Weninger", email="[email protected]" },
{ name="Felix Engelmann", email="[email protected]" },
]
description = "A high bandwidth stream to hdf5 receiver"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"h5py",
"pyyaml",
"pyzmq",
"uvicorn",
"fastapi",
"cbor2",
"dectris-compression",
]
dynamic = ["version"]
[tool.setuptools.packages.find]
include = ["streaming_receiver*"] # package names should match these glob patterns (["*"] by default)
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default)
[project.scripts]
streaming-receiver = "streaming_receiver.app.main:main"
[project.optional-dependencies]
tests = [
"pytest", "pytest-asyncio", "aiohttp", "pydantic-core",
]