commit 463c485f2742e8e1d4d001e31cb497a2b139d86e Author: alex Date: Sun Jan 23 13:29:44 2022 -0500 poetry init diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c4efe8d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "xlsx-dir-map" +version = "0.1.0" +description = "" +authors = ["alex"] + +[tool.poetry.dependencies] +python = "^3.9" + +[tool.poetry.dev-dependencies] +pytest = "^5.2" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_xlsx_dir_map.py b/tests/test_xlsx_dir_map.py new file mode 100644 index 0000000..94b7e16 --- /dev/null +++ b/tests/test_xlsx_dir_map.py @@ -0,0 +1,5 @@ +from xlsx_dir_map import __version__ + + +def test_version(): + assert __version__ == '0.1.0' diff --git a/xlsx_dir_map/__init__.py b/xlsx_dir_map/__init__.py new file mode 100644 index 0000000..b794fd4 --- /dev/null +++ b/xlsx_dir_map/__init__.py @@ -0,0 +1 @@ +__version__ = '0.1.0'