poetry init

This commit is contained in:
alex 2022-01-23 13:29:44 -05:00
commit 463c485f27
5 changed files with 21 additions and 0 deletions

0
README.rst Normal file
View File

15
pyproject.toml Normal file
View File

@ -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"

0
tests/__init__.py Normal file
View File

View File

@ -0,0 +1,5 @@
from xlsx_dir_map import __version__
def test_version():
assert __version__ == '0.1.0'

1
xlsx_dir_map/__init__.py Normal file
View File

@ -0,0 +1 @@
__version__ = '0.1.0'