Skip to content

Commit a33910b

Browse files
committed
init from poetry new
0 parents  commit a33910b

File tree

6 files changed

+176
-0
lines changed

6 files changed

+176
-0
lines changed

README.md

Whitespace-only changes.

cmem_plugin_base/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = '0.1.0'

poetry.lock

+155
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[tool.poetry]
2+
name = "cmem-plugin-base"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["Sebastian Tramp <[email protected]>"]
6+
7+
[tool.poetry.dependencies]
8+
python = "^3.10"
9+
10+
[tool.poetry.dev-dependencies]
11+
pytest = "^5.2"
12+
13+
[build-system]
14+
requires = ["poetry-core>=1.0.0"]
15+
build-backend = "poetry.core.masonry.api"

tests/__init__.py

Whitespace-only changes.

tests/test_cmem_plugin_base.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from cmem_plugin_base import __version__
2+
3+
4+
def test_version():
5+
assert __version__ == '0.1.0'

0 commit comments

Comments
 (0)