From 73b676cda0a10ef7d2af19e6b25cceda220bbb1d Mon Sep 17 00:00:00 2001 From: Geronimo Mirano Date: Mon, 4 Oct 2021 21:08:47 -0400 Subject: [PATCH] Added a pyproject.toml, with slightly loosened constraints. Confirmed unit tests pass. --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..2912ca5a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[tool.poetry] +name = "censio-filterpy" +version = "1.0.0" # (originally was 1.0.UNKNOWN) +description = "Fork of original library at https://github.com/rlabbe/filterpy" +license = "MIT" +readme = "README.rst" +authors = ["Roger Labbe "] +packages = [{ include = "filterpy" }] + +[[tool.poetry.source]] +name = "codeartifact" +url = "https://cmt-797462016303.d.codeartifact.us-east-1.amazonaws.com/pypi/python-read/simple/" +default = true + +[tool.poetry.dependencies] +python = "^3.7.1" +numpy = "<2" +scipy = "<1.5" + +[tool.poetry.dev-dependencies] +pytest = "^5.2" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"