initial commit
This commit is contained in:
0
README.rst
Normal file
0
README.rst
Normal file
15
pyproject.toml
Normal file
15
pyproject.toml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
[tool.poetry]
|
||||||
|
name = "musicbrainzapi"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = ""
|
||||||
|
authors = ["dtomlinson <dtomlinson@williamhill.co.uk>"]
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "^3.7"
|
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies]
|
||||||
|
pytest = "^5.2"
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry>=0.12"]
|
||||||
|
build-backend = "poetry.masonry.api"
|
||||||
1
src/musicbrainzapi/__init__.py
Normal file
1
src/musicbrainzapi/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
__version__ = '0.1.0'
|
||||||
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
5
tests/test_musicbrainzapi.py
Normal file
5
tests/test_musicbrainzapi.py
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
from musicbrainzapi import __version__
|
||||||
|
|
||||||
|
|
||||||
|
def test_version():
|
||||||
|
assert __version__ == '0.1.0'
|
||||||
Reference in New Issue
Block a user