Skip to content
Snippets Groups Projects
Select Git revision
  • 1e8f9933b15e7d94804bf0deba2eb011f80c38d0
  • master default protected
2 results

Sound Detector Module.txt

Blame
  • pyproject.toml 1020 B
    [tool.poetry]
    name = "bbbmon"
    version = "0.1.5"
    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 = "GPLv3"
    readme = "README.md"
    classifiers = [
        "Development Status :: 3 - Alpha",
        "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"
    appdirs = "^1.4.3"
    
    [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"