Skip to content
Snippets Groups Projects
Select Git revision
  • f3eaf08898dda0642623d7d477b96a2df2cd6697
  • master default protected
  • v0.13
  • v0.12
  • v0.10
  • v0.9
  • v0.8
  • v0.7
  • v0.5
  • v0.4
  • v0.3
  • v0.2
12 results

strings.po

Blame
  • pyproject.toml 1.00 KiB
    [tool.poetry]
    name = "bbbmon"
    version = "0.1.28"
    description = "A small CLI utility to monitor bbb usage"
    authors = ["David Huss <david.huss@hfbk-hamburg.de>"]
    maintainers = ["David Huss <david.huss@hfbk-hamburg.de>"]
    license = "GPL-3.0+"
    readme = "README.md"
    classifiers = [
        "Development Status :: 4 - Beta",
        "Environment :: Console",
        "Intended Audience :: System Administrators",
        "License :: Free for non-commercial use",
        "License :: Free For Educational Use",
        "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
        "Natural Language :: English",
        "Programming Language :: Python :: 3.6",
        "Topic :: System :: Monitoring",
        "Topic :: Communications :: Conferencing"
    ]
    
    [tool.poetry.dependencies]
    python = "^3.5"
    requests = "^2.23.0"
    click = "^7.1.2"
    toml = "^0.10.1"
    click-help-colors = "^0.8"
    
    [tool.poetry.dev-dependencies]
    pytest = "^5.2"
    
    [tool.poetry.scripts]
    bbbmon = "bbbmon.bbbmon:main"
    
    [build-system]
    requires = ["poetry>=0.12"]
    build-backend = "poetry.masonry.api"