diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/__pycache__/eAxisParameters.cpython-313.pyc b/__pycache__/eAxisParameters.cpython-313.pyc deleted file mode 100644 index 84604dc..0000000 Binary files a/__pycache__/eAxisParameters.cpython-313.pyc and /dev/null differ diff --git a/__pycache__/motionFunctionsLib.cpython-313.pyc b/__pycache__/motionFunctionsLib.cpython-313.pyc deleted file mode 100644 index db763bf..0000000 Binary files a/__pycache__/motionFunctionsLib.cpython-313.pyc and /dev/null differ diff --git a/motion_package/__init__.py b/motion_package/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/eAxisParameters.py b/motion_package/eAxisParameters.py similarity index 100% rename from eAxisParameters.py rename to motion_package/eAxisParameters.py diff --git a/motionFunctionsLib.py b/motion_package/motionFunctionsLib.py similarity index 100% rename from motionFunctionsLib.py rename to motion_package/motionFunctionsLib.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0e368f2 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "mfl" +authors = [ + {name = "Roman Berti ", email = "roman.berti09gmail.com"} +] +description = "Wraper for pyads" +version = "0.0.0" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "requests > 2.26.0", + "enum", + "sys", + "os", + "datetime", + "time" +]