diff --git a/.gitignore b/.gitignore index e01cb02..f083d34 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,6 @@ __pycache__ .idea .spot .fm +poetry.lock scratch.py \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d344b57 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "spotfm" +version = "1.0.0" +description = "Interface functions for spotframework and fmframework. Maths functions among others" +authors = ["andy "] +repository = "https://github.com/Sarsoo/spotfm" + +[tool.poetry.dependencies] +python = "^3.8" + +spotframework = { path = "../spotframework" } +fmframework = { path = "../fmframework" } + +[tool.poetry.dev-dependencies] +pylint = "2.5.3" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"