Skip to content
Snippets Groups Projects
pyproject.toml 986 B
Newer Older
  • Learn to ignore specific revisions
  • David Huss's avatar
    David Huss committed
    [tool.poetry]
    name = "bbbmon"
    
    David Huss's avatar
    David Huss committed
    version = "0.1.19"
    
    David Huss's avatar
    David Huss committed
    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]
    
    David Huss's avatar
    David Huss committed
    bbbmon = "bbbmon.bbbmon:main"
    
    David Huss's avatar
    David Huss committed
    
    [build-system]
    requires = ["poetry>=0.12"]
    build-backend = "poetry.masonry.api"