Skip to content
Snippets Groups Projects
pyproject.toml 496 B
Newer Older
  • Learn to ignore specific revisions
  • David Huss's avatar
    David Huss committed
    [tool.poetry]
    name = "stechuhr-server"
    version = "0.1.0"
    description = ""
    authors = ["David Huss <dh@atoav.com>"]
    
    [tool.poetry.dependencies]
    python = "^3.8"
    flask = "^1.1.2"
    toml = "^0.10.2"
    gunicorn = "^20.0.4"
    
    [tool.poetry.dev-dependencies]
    pytest = "^5.2"
    
    [tool.poetry.scripts]
    main = "stechuhr_server.server:main"
    
    David Huss's avatar
    David Huss committed
    retention = "stechuhr_server.retention:data_retention"
    
    David Huss's avatar
    David Huss committed
    config = "stechuhr_server.config:main"
    
    David Huss's avatar
    David Huss committed
    
    [build-system]
    requires = ["poetry>=0.12"]
    build-backend = "poetry.masonry.api"