strix

A simple web UI for motion
git clone https://www.brianlane.com/git/strix
Log | Files | Refs | LICENSE

setup.cfg (743B)


      1 [metadata]
      2 name        = strix
      3 version     = 0.0.2
      4 description = A Motion Camera API Server and UI
      5 license     = GPLv2
      6 author      = Brian Lane
      7 author_email= bcl@brianlane.com
      8 keywords    = motion security camera strix
      9 url         = https://www.brianlane.com/software/strix.html
     10 
     11 [options]
     12 package_dir =
     13     =src
     14 packages = find:
     15 install_requires =
     16     bottle
     17     gevent
     18     structlog
     19     Pillow
     20 
     21 [options.packages.find]
     22 where = src
     23 
     24 [options.package_data]
     25 strix = ui/*
     26 
     27 [options.extras_require]
     28 testing =
     29     coverage
     30     nose
     31     pylint
     32     pytest
     33 
     34 [build_sphinx]
     35 source-dir = docs/
     36 build-dir  = docs/_build
     37 all_files  = 1
     38 
     39 [nosetests]
     40 verbosity=1
     41 detailed-errors=1
     42 with-coverage=1
     43 cover-package=strix
     44 debug=nose.loader
     45 pdb=1
     46 pdb-failures=1