Skip to content
Snippets Groups Projects
Select Git revision
  • 9bf473d77f5607e8bb17c3d00d5ec971cab32d5f
  • master default
  • v2.3.1
  • v2.2.0
  • v2.0.0
  • v1.1.0
6 results

README.md

Blame
  • To learn more about this project, read the wiki.
    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"