Skip to content
Snippets Groups Projects
Select Git revision
  • 0acc1f6d5d7d7a8289b7907ba04113883aa2588c
  • master default
  • renovate/fastapi-0.x
  • renovate/uvicorn-0.x
  • renovate/sqlalchemy-2.x
  • v2.20.1
  • v2.20.0
  • v2.19.0
  • v2.18.1
  • v2.18.0
  • v2.17.0
  • v2.16.0
  • v2.15.0
  • v2.14.0
  • v2.13.1
  • v2.13.0
  • v2.12.0
  • v2.11.0
  • v2.10.0
  • v2.9.0
  • v2.8.0
  • v2.7.0
  • v2.6.0
  • v2.5.0
  • v2.4.1
25 results

pyproject.toml

Blame
  • pyproject.toml 587 B
    [tool.poetry]
    name = "StorageLeaf"
    version = "1.5.0"
    description = "Accepts sensor data and saves them into a database. The saved data can be accessed via api."
    authors = ["TheCodeLabs <spam@thecodelabs.com>"]
    
    [[tool.poetry.source]]
    name = "TheCodeLabs"
    url = "https://pypi.thecodelabs.de"
    secondary = true
    
    [tool.poetry.dependencies]
    python = "^3.7"
    flask = "^1.1.2"
    gevent = "^20.9.0"
    TheCodeLabs-BaseUtils = "*"
    TheCodeLabs-FlaskUtils = "*"
    pyyaml = "^5.3.1"
    
    [tool.poetry.dev-dependencies]
    
    [build-system]
    requires = ["poetry-core>=1.0.0"]
    build-backend = "poetry.core.masonry.api"