27 lines
730 B
TOML
27 lines
730 B
TOML
[project]
|
|
name = "medtrace-synth"
|
|
version = "0.0.0.dev0"
|
|
description = "Synthesized biometric signals service"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
authors = [
|
|
{ name = "Tom Brennan", email = "tjb1982@gmail.com" },
|
|
]
|
|
classifiers = []
|
|
urls = { "gitlab" = "https://git.pojagi.org/tjb1982/medtrace-synth" }
|
|
dependencies = ["websockets==12.0"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["watchfiles"] # "pojagi-dsp @ file://{root}/../pojagi-dsp"]
|
|
live = ["pojagi-dsp @ git+https://git.pojagi.org/tjb1982/pojagi-dsp@blueberry"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/medtrace_synth"]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|