Skip to content
Snippets Groups Projects
Select Git revision
  • 416672c4be697081b90662318e24d8f93342bab8
  • master default protected
  • v0.1.24
  • v0.1.23
  • v0.1.22
  • v0.1.21
  • v0.1.19
  • v0.1.18
  • v0.1.17
  • v0.1.16
  • v0.1.15
  • v0.1.14
  • v1.1
  • v.0.1.12
  • v.0.1.11
  • v.0.1.10
  • v.0.1.9
  • v.0.1.8
  • v.0.1.7
  • v.0.1.6
  • v0.1.5
21 results

pyproject.toml

Blame
  • pyproject.toml 986 B
    [tool.poetry]
    name = "bbbmon"
    version = "0.1.22"
    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 :: 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"
    click = "^7.1.2"
    
    [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"