commit 1610959566be3c14ed6477bc2125e1c1cc317c36 Author: dtomlinson Date: Tue Mar 3 10:15:47 2020 +0000 initial commit 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..ebbc265 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "musicbrainzapi" +version = "0.1.0" +description = "" +authors = ["dtomlinson "] + +[tool.poetry.dependencies] +python = "^3.7" + +[tool.poetry.dev-dependencies] +pytest = "^5.2" + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" diff --git a/src/musicbrainzapi/__init__.py b/src/musicbrainzapi/__init__.py new file mode 100644 index 0000000..b794fd4 --- /dev/null +++ b/src/musicbrainzapi/__init__.py @@ -0,0 +1 @@ +__version__ = '0.1.0' diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_musicbrainzapi.py b/tests/test_musicbrainzapi.py new file mode 100644 index 0000000..0f7eafd --- /dev/null +++ b/tests/test_musicbrainzapi.py @@ -0,0 +1,5 @@ +from musicbrainzapi import __version__ + + +def test_version(): + assert __version__ == '0.1.0'