Adding python package

This commit is contained in:
Mose Mueller 2023-04-10 16:52:08 +02:00
parent 3916088126
commit cfad1e20c4
3 changed files with 16 additions and 0 deletions

View File

View File

16
pyproject.toml Normal file
View File

@ -0,0 +1,16 @@
[tool.poetry]
name = "icon-service-base"
version = "0.1.0"
description = "Repository storing the code that is common to all icon services."
authors = ["Mose Mueller <mosmuell@ethz.ch>"]
license = "MIT"
readme = "README.md"
packages = [{include = "icon_service_base"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"