Skip to content

Commit

Permalink
New poetry project #2714
Browse files Browse the repository at this point in the history
  • Loading branch information
iamleeg committed Jun 17, 2022
1 parent 5af5c9e commit 3df1f03
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
Empty file.
15 changes: 15 additions & 0 deletions data-serving/reusable-data-service/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[tool.poetry]
name = "reusable-data-service"
version = "0.1.0"
description = ""
authors = ["Graham Lee <graham.lee@cs.ox.ac.uk>"]

[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"
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1.0'
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from reusable_data_service import __version__


def test_version():
assert __version__ == '0.1.0'

0 comments on commit 3df1f03

Please sign in to comment.