1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env python3
from setuptools import setup
setup(
name='config',
description='config for webcam-webui',
author='Sergio Schvezov <sergio.schvezov@canonical.com>',
license='GPLv3',
install_requires=[
'pyyaml',
],
scripts=[
'config.py',
],
)
|