commit 769adaf64468305770551ed5f21af0c61e8e4814 Author: Tom Brennan Date: Mon Apr 22 12:03:18 2024 -0400 first commit diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a4292d1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,28 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "medtrace-synth" +description = "Synthesized biometric signals service" +urls = { "gitlab" = "https://gitlab.pojagi.org/tjb1982/medtrace-synth" } +authors = [ + { name = "Tom Brennan", email = "tjb1982@gmail.com" }, +] +readme = "README.md" +requires-python = ">=3.8" +classifiers = [] +dependencies = [ + "pydantic==1.10.2", + "scipy==1.8.1", + + # These should be included in the above requirement + # "marshmallow>=3.3.0", + # "marshmallow_dataclass>=7.2.1", + # "marshmallow_oneofschema>=2.0.1", + # "PyYAML>=5.3.1", +] + +# optional-dependencies = { test = ["pytest"] } +version = "0.0.0.dev0" +# dynamic = ["version"] \ No newline at end of file